Spaces:
Sleeping
Sleeping
Upload 8 files
Browse files- app.py +80 -0
- child_mortality_0_5_year_olds_dying_per_1000_born.csv +0 -0
- gdp_pcap.csv +0 -0
- life_expectancy.csv +0 -0
- mean_years_in_school_men_15_to_24_years.csv +189 -0
- mean_years_in_school_women_15_to_24_years.csv +189 -0
- mincpcap_cppp.csv +0 -0
- pop.csv +0 -0
app.py
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
import subprocess
|
| 3 |
+
import sys
|
| 4 |
+
|
| 5 |
+
# Install plotly if not already installed
|
| 6 |
+
try:
|
| 7 |
+
import plotly
|
| 8 |
+
except ImportError:
|
| 9 |
+
subprocess.check_call([sys.executable, "-m", "pip", "install", "plotly"])
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
# import subprocess
|
| 13 |
+
# import sys
|
| 14 |
+
|
| 15 |
+
import pandas as pd
|
| 16 |
+
import streamlit as st
|
| 17 |
+
import plotly.express as px
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
# Load Dataset
|
| 22 |
+
# Example: 'country' column for country names, other columns for years
|
| 23 |
+
data = pd.read_csv("https://huggingface.co/spaces/jiyachachan/fp2/resolve/main/child_mortality_0_5_year_olds_dying_per_1000_born.csv")
|
| 24 |
+
|
| 25 |
+
# Melt the data to long format for easier filtering
|
| 26 |
+
data_melted = data.melt(id_vars=["country"], var_name="year", value_name="mortality_rate")
|
| 27 |
+
data_melted["year"] = pd.to_numeric(data_melted["year"])
|
| 28 |
+
# Streamlit App
|
| 29 |
+
st.title("Global Child Mortality Rate (per 1000 children born)")
|
| 30 |
+
st.write("By Jiya Chachan, Smeet Patel, Ji Eun Kim, Miloni Shah, Chenzhao Wang")
|
| 31 |
+
st.write("Dataset: Child Mortality")
|
| 32 |
+
st.dataframe(data)
|
| 33 |
+
st.write("""Credits: https://www.gapminder.org/data/""")
|
| 34 |
+
|
| 35 |
+
st.write("""The following interactive visualization provides an insightful overview of child mortality rates (number of deaths per 1,000 live births) across countries for a selected year.
|
| 36 |
+
The data highlights disparities in healthcare, socioeconomic conditions, and development across the globe, making it a valuable tool for understanding global health challenges.""")
|
| 37 |
+
# Add year selection
|
| 38 |
+
# years = sorted(data_melted["year"].unique()) # Extract unique years from the dataset
|
| 39 |
+
# selected_year = st.selectbox("Select Year", years)
|
| 40 |
+
# Add year selection with a slider
|
| 41 |
+
min_year = int(data_melted["year"].min())
|
| 42 |
+
max_year = int(data_melted["year"].max())
|
| 43 |
+
|
| 44 |
+
st.subheader("Child Mortality Trends around the Globe")
|
| 45 |
+
st.write("""
|
| 46 |
+
This Chart reveals an important trend of how the child mortality rate have been changing across the years.
|
| 47 |
+
This gives us a very important insight on how the present developed countries have successfully reduced the rate, and underdeveloped countries still faces challenges to curb child mortality successfully.
|
| 48 |
+
We can utilise the trends in the graph to understand the factors which might be the responsible for high mortality or low mortality.
|
| 49 |
+
This will help the policymakers in developing/under-developed countries to develop data-driven policy to reduce child mortality.
|
| 50 |
+
""")
|
| 51 |
+
|
| 52 |
+
selected_year = st.slider("Select Year", min_value=min_year, max_value=max_year, value = 2024, step = 5)
|
| 53 |
+
|
| 54 |
+
|
| 55 |
+
# Filter data for the selected year
|
| 56 |
+
filtered_data = data_melted[data_melted["year"] == selected_year]
|
| 57 |
+
|
| 58 |
+
|
| 59 |
+
# Create the map
|
| 60 |
+
fig = px.choropleth(
|
| 61 |
+
filtered_data,
|
| 62 |
+
locations="country", # Country names or ISO 3166-1 Alpha-3 codes
|
| 63 |
+
locationmode="country names", # Use 'ISO-3' if you have country codes
|
| 64 |
+
color="mortality_rate",
|
| 65 |
+
title=f"Child Mortality Rate in {selected_year}",
|
| 66 |
+
color_continuous_scale=px.colors.sequential.OrRd, # Customize the color scale
|
| 67 |
+
|
| 68 |
+
)
|
| 69 |
+
|
| 70 |
+
# Display the map
|
| 71 |
+
st.plotly_chart(fig)
|
| 72 |
+
|
| 73 |
+
st.write("""I began by acquiring a dataset on child mortality rates, with countries as rows and years as columns. The dataset contained child mortality rates as the number of deaths per 1,000 live births.
|
| 74 |
+
To make the dataset suitable for visualization, I transformed it into a long format using pandas.melt(), creating three columns: country, year, and mortality_rate. This step allowed for efficient filtering and visualization.
|
| 75 |
+
I chose a choropleth map because it effectively communicates regional differences using a color gradient. Each country is color-coded based on its mortality rate for a selected year, offering immediate visual insights.
|
| 76 |
+
I implemented a slider widget for year selection, enabling users to dynamically explore mortality rates over time.
|
| 77 |
+
This required ensuring that the year column was properly formatted as numeric data, and filtering the dataset based on the slider’s value.""")
|
| 78 |
+
|
| 79 |
+
|
| 80 |
+
|
child_mortality_0_5_year_olds_dying_per_1000_born.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
gdp_pcap.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
life_expectancy.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
mean_years_in_school_men_15_to_24_years.csv
ADDED
|
@@ -0,0 +1,189 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
country,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015
|
| 2 |
+
Afghanistan,1.82,1.87,1.92,1.97,2.02,2.07,2.12,2.17,2.23,2.28,2.34,2.4,2.46,2.52,2.58,2.64,2.71,2.78,2.84,2.91,2.98,3.05,3.13,3.2,3.28,3.36,3.44,3.52,3.6,3.69,3.78,3.86,3.95,4.05,4.14,4.23,4.33,4.43,4.53,4.63,4.73,4.84,4.94,5.05,5.16,5.27
|
| 3 |
+
Angola,2.25,2.31,2.36,2.42,2.48,2.54,2.6,2.67,2.73,2.8,2.86,2.93,3,3.07,3.14,3.22,3.29,3.37,3.44,3.52,3.6,3.69,3.77,3.85,3.94,4.03,4.12,4.21,4.3,4.39,4.49,4.59,4.69,4.79,4.89,5,5.1,5.21,5.32,5.43,5.55,5.66,5.78,5.9,6.02,6.14
|
| 4 |
+
Albania,5.47,5.58,5.69,5.8,5.91,6.02,6.13,6.24,6.36,6.47,6.59,6.71,6.83,6.95,7.06,7.19,7.31,7.43,7.55,7.67,7.8,7.92,8.05,8.17,8.3,8.43,8.55,8.68,8.81,8.95,9.08,9.21,9.35,9.48,9.62,9.75,9.89,10,10.2,10.3,10.4,10.6,10.7,10.9,11,11.2
|
| 5 |
+
Andorra,9.16,9.3,9.44,9.58,9.72,9.86,10,10.1,10.3,10.4,10.6,10.7,10.8,11,11.1,11.2,11.4,11.5,11.7,11.8,11.9,12.1,12.2,12.3,12.4,12.6,12.7,12.8,12.9,13.1,13.2,13.3,13.4,13.6,13.7,13.8,13.9,14.1,14.2,14.3,14.4,14.5,14.6,14.7,14.8,14.9
|
| 6 |
+
UAE,4.24,4.35,4.47,4.58,4.71,4.83,4.96,5.09,5.23,5.37,5.52,5.67,5.83,5.99,6.16,6.33,6.51,6.7,6.89,7.09,7.3,7.52,7.75,7.99,8.24,8.5,8.71,8.91,9.11,9.3,9.5,9.68,9.87,10,10.2,10.4,10.6,10.7,10.9,11.1,11.2,11.4,11.5,11.7,11.8,12
|
| 7 |
+
Argentina,6.61,6.73,6.84,6.96,7.07,7.19,7.31,7.42,7.54,7.65,7.77,7.88,7.99,8.11,8.22,8.33,8.44,8.55,8.66,8.76,8.86,8.96,9.06,9.16,9.26,9.35,9.45,9.56,9.66,9.78,9.89,10,10.1,10.2,10.4,10.5,10.6,10.7,10.8,11,11.1,11.2,11.4,11.5,11.6,11.7
|
| 8 |
+
Armenia,6.1,6.22,6.34,6.45,6.57,6.69,6.81,6.93,7.04,7.16,7.28,7.4,7.52,7.64,7.76,7.88,8,8.11,8.23,8.34,8.46,8.57,8.69,8.8,8.91,9.03,9.14,9.25,9.37,9.49,9.61,9.73,9.86,9.99,10.1,10.3,10.4,10.5,10.7,10.8,10.9,11.1,11.2,11.3,11.5,11.6
|
| 9 |
+
Antigua and Barbuda,7.46,7.59,7.72,7.86,7.99,8.12,8.26,8.4,8.53,8.67,8.81,8.94,9.08,9.22,9.36,9.5,9.64,9.78,9.92,10.1,10.2,10.3,10.5,10.6,10.8,10.9,11,11.2,11.3,11.4,11.6,11.7,11.8,12,12.1,12.2,12.4,12.5,12.6,12.8,12.9,13,13.1,13.3,13.4,13.5
|
| 10 |
+
Australia,9.06,9.2,9.34,9.48,9.62,9.76,9.9,10,10.2,10.3,10.4,10.6,10.7,10.9,11,11.1,11.3,11.4,11.5,11.6,11.8,11.9,12,12.1,12.2,12.4,12.5,12.6,12.7,12.8,12.9,13.1,13.2,13.3,13.4,13.5,13.6,13.8,13.9,14,14.1,14.2,14.3,14.4,14.6,14.7
|
| 11 |
+
Austria,7.24,7.35,7.46,7.57,7.68,7.79,7.89,8,8.1,8.2,8.3,8.4,8.5,8.6,8.69,8.78,8.87,8.96,9.05,9.13,9.21,9.29,9.37,9.44,9.51,9.58,9.67,9.77,9.87,9.97,10.1,10.2,10.3,10.4,10.5,10.7,10.8,10.9,11,11.2,11.3,11.4,11.5,11.7,11.8,11.9
|
| 12 |
+
Azerbaijan,6.75,6.87,7,7.12,7.25,7.37,7.5,7.63,7.76,7.88,8.01,8.14,8.27,8.39,8.52,8.65,8.77,8.9,9.03,9.15,9.27,9.4,9.52,9.64,9.76,9.87,9.99,10.1,10.2,10.3,10.4,10.6,10.7,10.8,10.9,11,11.2,11.3,11.4,11.5,11.6,11.8,11.9,12,12.2,12.3
|
| 13 |
+
Burundi,1.92,1.97,2.02,2.07,2.12,2.18,2.23,2.29,2.34,2.4,2.46,2.52,2.59,2.65,2.71,2.78,2.85,2.92,2.99,3.06,3.14,3.21,3.29,3.37,3.45,3.54,3.62,3.71,3.8,3.89,3.98,4.08,4.17,4.27,4.37,4.47,4.57,4.67,4.78,4.89,4.99,5.1,5.21,5.33,5.44,5.56
|
| 14 |
+
Belgium,8.59,8.7,8.82,8.93,9.04,9.15,9.25,9.36,9.46,9.57,9.67,9.77,9.87,9.96,10.1,10.2,10.2,10.3,10.4,10.5,10.6,10.6,10.7,10.8,10.8,10.9,11,11.1,11.2,11.3,11.4,11.5,11.6,11.7,11.8,12,12.1,12.2,12.3,12.4,12.6,12.7,12.8,12.9,13,13.2
|
| 15 |
+
Benin,2.26,2.32,2.38,2.44,2.5,2.56,2.63,2.7,2.76,2.83,2.91,2.98,3.05,3.13,3.21,3.29,3.37,3.45,3.54,3.62,3.71,3.81,3.9,3.99,4.09,4.19,4.3,4.41,4.52,4.63,4.74,4.85,4.97,5.08,5.2,5.32,5.44,5.56,5.68,5.8,5.92,6.05,6.17,6.3,6.42,6.55
|
| 16 |
+
Burkina Faso,1.15,1.18,1.21,1.24,1.28,1.31,1.35,1.39,1.42,1.46,1.5,1.54,1.59,1.63,1.67,1.72,1.77,1.82,1.86,1.92,1.97,2.02,2.08,2.13,2.19,2.25,2.31,2.38,2.44,2.51,2.58,2.65,2.72,2.79,2.87,2.94,3.02,3.1,3.18,3.26,3.34,3.42,3.51,3.59,3.68,3.76
|
| 17 |
+
Bangladesh,2.73,2.8,2.86,2.93,3,3.08,3.15,3.22,3.3,3.38,3.46,3.54,3.62,3.7,3.78,3.87,3.96,4.05,4.14,4.23,4.32,4.42,4.52,4.61,4.71,4.81,4.92,5.02,5.12,5.23,5.34,5.45,5.56,5.67,5.78,5.9,6.01,6.13,6.25,6.37,6.49,6.62,6.74,6.87,7,7.13
|
| 18 |
+
Bulgaria,7.93,8.03,8.14,8.24,8.34,8.44,8.54,8.63,8.72,8.81,8.89,8.97,9.05,9.12,9.19,9.25,9.31,9.36,9.41,9.45,9.49,9.52,9.54,9.56,9.58,9.59,9.64,9.7,9.76,9.83,9.9,9.97,10.1,10.1,10.2,10.3,10.4,10.5,10.6,10.7,10.8,11,11.1,11.2,11.3,11.4
|
| 19 |
+
Bahrain,5.37,5.49,5.6,5.71,5.83,5.94,6.06,6.17,6.29,6.41,6.52,6.64,6.75,6.87,6.99,7.1,7.21,7.33,7.44,7.55,7.66,7.76,7.86,7.96,8.06,8.16,8.24,8.33,8.42,8.51,8.6,8.7,8.8,8.9,9,9.11,9.21,9.32,9.43,9.55,9.66,9.78,9.9,10,10.2,10.3
|
| 20 |
+
Bahamas,6.67,6.8,6.92,7.05,7.18,7.31,7.44,7.57,7.7,7.83,7.97,8.1,8.24,8.37,8.51,8.65,8.78,8.92,9.06,9.2,9.33,9.47,9.61,9.75,9.89,10,10.2,10.3,10.4,10.6,10.7,10.9,11,11.1,11.3,11.4,11.6,11.7,11.8,11.9,12.1,12.2,12.3,12.5,12.6,12.7
|
| 21 |
+
Bosnia and Herzegovina,5.12,5.23,5.33,5.44,5.55,5.66,5.77,5.88,5.99,6.11,6.22,6.34,6.45,6.57,6.69,6.81,6.93,7.06,7.18,7.31,7.43,7.56,7.69,7.82,7.95,8.08,8.22,8.36,8.5,8.64,8.78,8.92,9.07,9.21,9.36,9.5,9.65,9.8,9.95,10.1,10.3,10.4,10.5,10.7,10.8,11
|
| 22 |
+
Belarus,6.42,6.53,6.65,6.77,6.89,7.01,7.13,7.25,7.37,7.5,7.62,7.74,7.87,7.99,8.12,8.25,8.37,8.5,8.63,8.76,8.89,9.02,9.15,9.28,9.41,9.55,9.7,9.85,10,10.2,10.3,10.4,10.6,10.8,10.9,11.1,11.2,11.4,11.6,11.7,11.9,12,12.2,12.3,12.5,12.6
|
| 23 |
+
Belize,4.41,4.51,4.61,4.71,4.81,4.91,5.01,5.12,5.22,5.33,5.44,5.55,5.66,5.77,5.89,6,6.12,6.23,6.35,6.47,6.59,6.71,6.83,6.96,7.08,7.21,7.33,7.45,7.58,7.7,7.83,7.96,8.09,8.22,8.35,8.48,8.61,8.75,8.88,9.02,9.15,9.29,9.43,9.56,9.7,9.84
|
| 24 |
+
Bolivia,5.28,5.39,5.49,5.6,5.71,5.83,5.94,6.05,6.16,6.28,6.4,6.51,6.63,6.75,6.86,6.98,7.1,7.22,7.34,7.46,7.58,7.7,7.82,7.94,8.06,8.18,8.3,8.43,8.55,8.68,8.81,8.94,9.07,9.2,9.33,9.47,9.6,9.74,9.88,10,10.2,10.3,10.4,10.6,10.7,10.8
|
| 25 |
+
Brazil,3.4,3.47,3.55,3.64,3.72,3.8,3.89,3.97,4.06,4.15,4.24,4.33,4.42,4.52,4.61,4.71,4.81,4.91,5.01,5.11,5.21,5.32,5.42,5.53,5.64,5.75,5.86,5.97,6.08,6.2,6.32,6.43,6.55,6.67,6.79,6.92,7.04,7.17,7.29,7.42,7.55,7.68,7.81,7.94,8.08,8.21
|
| 26 |
+
Barbados,5.29,5.4,5.52,5.63,5.74,5.86,5.97,6.09,6.21,6.33,6.45,6.57,6.7,6.82,6.95,7.08,7.2,7.33,7.46,7.59,7.73,7.86,7.99,8.13,8.26,8.39,8.53,8.67,8.8,8.94,9.08,9.22,9.36,9.49,9.63,9.77,9.91,10.1,10.2,10.3,10.5,10.6,10.8,10.9,11,11.2
|
| 27 |
+
Brunei,9.49,9.63,9.77,9.91,10.1,10.2,10.3,10.5,10.6,10.7,10.9,11,11.2,11.3,11.4,11.6,11.7,11.8,12,12.1,12.2,12.4,12.5,12.6,12.8,12.9,13,13.1,13.3,13.4,13.5,13.6,13.8,13.9,14,14.1,14.2,14.3,14.4,14.6,14.7,14.8,14.9,15,15.1,15.2
|
| 28 |
+
Bhutan,2.91,2.98,3.05,3.12,3.2,3.27,3.35,3.43,3.51,3.59,3.68,3.76,3.85,3.94,4.03,4.12,4.21,4.3,4.4,4.5,4.59,4.69,4.8,4.9,5,5.11,5.22,5.33,5.44,5.55,5.66,5.77,5.89,6.01,6.13,6.25,6.37,6.49,6.61,6.74,6.86,6.99,7.12,7.25,7.38,7.51
|
| 29 |
+
Botswana,2.4,2.48,2.55,2.63,2.72,2.8,2.89,2.98,3.08,3.18,3.28,3.39,3.51,3.63,3.76,3.89,4.03,4.18,4.33,4.5,4.67,4.86,5.05,5.26,5.47,5.69,5.82,5.95,6.08,6.22,6.35,6.48,6.62,6.75,6.88,7.02,7.16,7.29,7.43,7.57,7.7,7.84,7.98,8.12,8.26,8.4
|
| 30 |
+
Central African Republic,2.71,2.78,2.84,2.91,2.97,3.04,3.11,3.18,3.25,3.32,3.4,3.47,3.55,3.62,3.7,3.78,3.86,3.94,4.02,4.1,4.19,4.27,4.36,4.44,4.53,4.62,4.71,4.8,4.89,4.99,5.09,5.19,5.29,5.39,5.5,5.6,5.71,5.82,5.94,6.05,6.17,6.29,6.41,6.53,6.66,6.79
|
| 31 |
+
Canada,9.87,10,10.2,10.3,10.5,10.6,10.8,10.9,11,11.2,11.3,11.4,11.5,11.6,11.7,11.8,11.9,12,12.1,12.2,12.2,12.3,12.4,12.4,12.5,12.6,12.6,12.7,12.7,12.8,12.9,12.9,13,13.1,13.2,13.3,13.4,13.5,13.6,13.7,13.8,13.9,14,14.1,14.2,14.3
|
| 32 |
+
Switzerland,6.17,6.29,6.4,6.51,6.63,6.74,6.86,6.97,7.09,7.2,7.32,7.44,7.55,7.67,7.79,7.9,8.02,8.13,8.25,8.36,8.48,8.59,8.7,8.82,8.93,9.04,9.15,9.26,9.36,9.47,9.59,9.7,9.81,9.93,10.1,10.2,10.3,10.4,10.6,10.7,10.8,10.9,11.1,11.2,11.4,11.5
|
| 33 |
+
Chile,6.73,6.86,6.98,7.11,7.24,7.37,7.5,7.63,7.76,7.89,8.02,8.15,8.29,8.42,8.55,8.69,8.82,8.95,9.09,9.22,9.36,9.49,9.62,9.75,9.88,10,10.2,10.3,10.4,10.6,10.7,10.8,10.9,11.1,11.2,11.3,11.5,11.6,11.8,11.9,12,12.2,12.3,12.4,12.5,12.7
|
| 34 |
+
China,5.55,5.66,5.77,5.88,6,6.11,6.23,6.34,6.46,6.58,6.7,6.81,6.93,7.06,7.18,7.3,7.42,7.55,7.67,7.8,7.92,8.05,8.17,8.3,8.43,8.55,8.68,8.8,8.93,9.06,9.19,9.32,9.45,9.58,9.71,9.84,9.97,10.1,10.2,10.4,10.5,10.6,10.8,10.9,11.1,11.2
|
| 35 |
+
Cote d'Ivoire,2.54,2.61,2.67,2.74,2.8,2.87,2.94,3.01,3.08,3.15,3.23,3.3,3.38,3.46,3.54,3.62,3.7,3.78,3.87,3.95,4.04,4.13,4.21,4.3,4.39,4.48,4.57,4.67,4.76,4.85,4.95,5.05,5.15,5.25,5.35,5.45,5.56,5.67,5.78,5.89,6,6.11,6.23,6.35,6.47,6.59
|
| 36 |
+
Cameroon,4,4.1,4.19,4.28,4.37,4.47,4.57,4.66,4.76,4.86,4.95,5.05,5.15,5.25,5.35,5.44,5.54,5.64,5.74,5.83,5.93,6.03,6.13,6.22,6.32,6.41,6.51,6.61,6.71,6.81,6.91,7.02,7.12,7.23,7.34,7.45,7.57,7.68,7.8,7.92,8.04,8.16,8.28,8.41,8.54,8.67
|
| 37 |
+
"Congo, Dem. Rep.",3.11,3.18,3.26,3.33,3.41,3.48,3.56,3.64,3.72,3.81,3.89,3.98,4.06,4.15,4.24,4.33,4.42,4.52,4.61,4.71,4.81,4.91,5.01,5.11,5.21,5.32,5.43,5.54,5.65,5.76,5.88,6,6.12,6.24,6.36,6.48,6.61,6.73,6.86,6.99,7.13,7.26,7.39,7.53,7.67,7.81
|
| 38 |
+
"Congo, Rep.",4.27,4.37,4.46,4.55,4.65,4.74,4.84,4.93,5.03,5.13,5.22,5.32,5.42,5.51,5.61,5.71,5.8,5.9,5.99,6.09,6.18,6.28,6.37,6.46,6.55,6.65,6.74,6.84,6.94,7.04,7.14,7.25,7.36,7.47,7.58,7.7,7.81,7.93,8.06,8.18,8.31,8.44,8.57,8.7,8.83,8.97
|
| 39 |
+
Colombia,4.43,4.53,4.63,4.73,4.83,4.94,5.05,5.15,5.26,5.38,5.49,5.6,5.72,5.84,5.96,6.08,6.2,6.32,6.45,6.57,6.7,6.83,6.96,7.09,7.22,7.35,7.49,7.62,7.75,7.88,8.02,8.15,8.29,8.43,8.56,8.7,8.84,8.98,9.12,9.26,9.4,9.54,9.68,9.82,9.96,10.1
|
| 40 |
+
Comoros,2.77,2.83,2.9,2.97,3.04,3.12,3.19,3.27,3.34,3.42,3.5,3.58,3.67,3.75,3.84,3.92,4.01,4.1,4.2,4.29,4.39,4.48,4.58,4.69,4.79,4.89,5,5.12,5.23,5.35,5.46,5.58,5.7,5.82,5.95,6.07,6.2,6.32,6.45,6.58,6.71,6.84,6.98,7.11,7.24,7.38
|
| 41 |
+
Cape Verde,3.24,3.32,3.4,3.48,3.56,3.64,3.73,3.82,3.9,3.99,4.09,4.18,4.27,4.37,4.47,4.57,4.67,4.77,4.87,4.98,5.08,5.19,5.3,5.41,5.53,5.64,5.75,5.87,5.99,6.11,6.23,6.35,6.47,6.59,6.72,6.84,6.97,7.09,7.22,7.35,7.48,7.61,7.74,7.88,8.01,8.14
|
| 42 |
+
Costa Rica,4.99,5.09,5.19,5.29,5.39,5.49,5.59,5.7,5.8,5.9,6.01,6.11,6.22,6.32,6.42,6.52,6.62,6.72,6.82,6.92,7.01,7.11,7.2,7.28,7.37,7.45,7.56,7.66,7.77,7.89,8,8.12,8.24,8.36,8.49,8.61,8.74,8.87,9,9.13,9.26,9.39,9.53,9.66,9.8,9.93
|
| 43 |
+
Cuba,6.28,6.42,6.56,6.7,6.85,6.99,7.14,7.29,7.44,7.59,7.75,7.9,8.06,8.21,8.37,8.53,8.68,8.84,8.99,9.14,9.29,9.44,9.58,9.72,9.85,9.98,10.1,10.2,10.4,10.5,10.6,10.7,10.9,11,11.1,11.3,11.4,11.5,11.7,11.8,11.9,12,12.2,12.3,12.4,12.6
|
| 44 |
+
Cyprus,8.28,8.41,8.54,8.66,8.79,8.91,9.04,9.16,9.28,9.41,9.53,9.65,9.77,9.89,10,10.1,10.2,10.3,10.4,10.6,10.7,10.8,10.9,11,11.1,11.2,11.3,11.4,11.5,11.6,11.7,11.8,11.9,12,12.1,12.2,12.3,12.4,12.5,12.7,12.8,12.9,13,13.1,13.2,13.3
|
| 45 |
+
Czech Republic,7.33,7.45,7.58,7.71,7.84,7.96,8.09,8.22,8.35,8.47,8.6,8.73,8.86,8.98,9.11,9.23,9.35,9.48,9.6,9.72,9.84,9.95,10.1,10.2,10.3,10.4,10.5,10.6,10.7,10.8,10.9,11,11.1,11.2,11.3,11.4,11.6,11.7,11.8,11.9,12,12.1,12.2,12.4,12.5,12.6
|
| 46 |
+
Germany,7.46,7.58,7.71,7.83,7.96,8.09,8.21,8.33,8.46,8.58,8.7,8.82,8.94,9.06,9.18,9.29,9.41,9.52,9.63,9.74,9.84,9.95,10.1,10.2,10.3,10.3,10.4,10.5,10.6,10.7,10.8,10.9,11.1,11.2,11.3,11.4,11.5,11.7,11.8,11.9,12,12.2,12.3,12.4,12.5,12.7
|
| 47 |
+
Djibouti,3.88,3.97,4.06,4.15,4.25,4.34,4.44,4.54,4.64,4.74,4.84,4.94,5.05,5.15,5.26,5.37,5.48,5.59,5.71,5.82,5.94,6.06,6.18,6.3,6.42,6.54,6.66,6.79,6.91,7.04,7.17,7.3,7.43,7.56,7.69,7.82,7.96,8.09,8.23,8.36,8.5,8.63,8.77,8.91,9.05,9.18
|
| 48 |
+
Dominica,6.28,6.4,6.52,6.65,6.77,6.9,7.03,7.16,7.29,7.42,7.55,7.68,7.81,7.95,8.08,8.22,8.35,8.49,8.63,8.76,8.9,9.04,9.18,9.32,9.46,9.6,9.73,9.87,10,10.2,10.3,10.4,10.6,10.7,10.8,11,11.1,11.3,11.4,11.5,11.7,11.8,11.9,12.1,12.2,12.3
|
| 49 |
+
Denmark,7.56,7.69,7.82,7.94,8.07,8.19,8.32,8.45,8.57,8.7,8.82,8.95,9.07,9.2,9.32,9.44,9.56,9.68,9.8,9.91,10,10.1,10.3,10.4,10.5,10.6,10.7,10.8,10.9,11,11.1,11.2,11.3,11.5,11.6,11.7,11.8,11.9,12.1,12.2,12.3,12.4,12.6,12.7,12.8,12.9
|
| 50 |
+
Dominican Republic,4.32,4.42,4.51,4.61,4.71,4.81,4.91,5.01,5.12,5.22,5.33,5.44,5.55,5.66,5.77,5.88,5.99,6.11,6.22,6.34,6.46,6.58,6.7,6.82,6.94,7.06,7.18,7.3,7.43,7.55,7.68,7.81,7.94,8.07,8.2,8.34,8.47,8.61,8.75,8.89,9.03,9.17,9.31,9.45,9.59,9.73
|
| 51 |
+
Algeria,2.77,2.86,2.95,3.04,3.14,3.25,3.35,3.46,3.58,3.69,3.82,3.95,4.08,4.22,4.36,4.51,4.66,4.82,4.99,5.17,5.35,5.54,5.75,5.96,6.19,6.43,6.59,6.76,6.92,7.08,7.23,7.39,7.54,7.69,7.84,7.99,8.13,8.28,8.42,8.57,8.71,8.85,8.99,9.14,9.28,9.42
|
| 52 |
+
Ecuador,5.01,5.11,5.22,5.32,5.43,5.53,5.64,5.75,5.86,5.96,6.07,6.18,6.29,6.4,6.51,6.62,6.73,6.84,6.95,7.05,7.16,7.27,7.38,7.48,7.59,7.7,7.81,7.92,8.03,8.15,8.27,8.39,8.51,8.64,8.77,8.89,9.02,9.16,9.29,9.43,9.56,9.7,9.84,9.98,10.1,10.3
|
| 53 |
+
Egypt,4.85,4.96,5.07,5.18,5.3,5.42,5.54,5.66,5.78,5.91,6.04,6.17,6.3,6.43,6.57,6.7,6.84,6.97,7.11,7.25,7.38,7.52,7.66,7.8,7.93,8.07,8.19,8.32,8.44,8.57,8.69,8.81,8.94,9.06,9.19,9.32,9.45,9.57,9.7,9.84,9.97,10.1,10.2,10.4,10.5,10.6
|
| 54 |
+
Eritrea,2.55,2.62,2.68,2.75,2.82,2.89,2.96,3.03,3.1,3.18,3.25,3.33,3.41,3.49,3.57,3.66,3.74,3.83,3.92,4.01,4.1,4.2,4.3,4.39,4.49,4.59,4.7,4.81,4.91,5.02,5.13,5.24,5.36,5.47,5.58,5.7,5.82,5.94,6.06,6.18,6.3,6.42,6.55,6.67,6.8,6.93
|
| 55 |
+
Spain,6.7,6.83,6.95,7.07,7.2,7.33,7.45,7.58,7.71,7.84,7.97,8.1,8.23,8.36,8.49,8.63,8.76,8.89,9.02,9.15,9.29,9.42,9.55,9.68,9.81,9.94,10.1,10.2,10.3,10.4,10.6,10.7,10.8,11,11.1,11.2,11.4,11.5,11.6,11.8,11.9,12,12.2,12.3,12.4,12.6
|
| 56 |
+
Estonia,5.15,5.25,5.35,5.45,5.56,5.66,5.76,5.87,5.98,6.08,6.19,6.3,6.4,6.51,6.62,6.73,6.84,6.95,7.06,7.17,7.28,7.39,7.5,7.61,7.73,7.84,7.96,8.08,8.21,8.33,8.46,8.6,8.73,8.87,9.01,9.15,9.29,9.43,9.58,9.73,9.88,10,10.2,10.3,10.5,10.6
|
| 57 |
+
Ethiopia,2.33,2.39,2.45,2.52,2.59,2.66,2.73,2.8,2.88,2.95,3.03,3.11,3.19,3.28,3.36,3.45,3.54,3.63,3.72,3.81,3.91,4,4.1,4.2,4.3,4.4,4.51,4.61,4.72,4.82,4.93,5.03,5.14,5.25,5.35,5.46,5.57,5.67,5.78,5.89,5.99,6.1,6.21,6.32,6.43,6.54
|
| 58 |
+
Finland,6.79,6.91,7.03,7.15,7.27,7.39,7.52,7.64,7.76,7.89,8.01,8.13,8.26,8.38,8.51,8.63,8.76,8.88,9,9.13,9.25,9.38,9.5,9.62,9.75,9.87,9.99,10.1,10.3,10.4,10.5,10.6,10.8,10.9,11,11.2,11.3,11.4,11.6,11.7,11.8,12,12.1,12.3,12.4,12.5
|
| 59 |
+
Fiji,7.14,7.24,7.35,7.46,7.56,7.66,7.77,7.87,7.97,8.07,8.16,8.26,8.35,8.44,8.53,8.62,8.71,8.79,8.87,8.95,9.03,9.1,9.18,9.25,9.32,9.39,9.5,9.61,9.72,9.84,9.95,10.1,10.2,10.3,10.4,10.6,10.7,10.8,10.9,11.1,11.2,11.3,11.4,11.6,11.7,11.8
|
| 60 |
+
France,7.87,7.99,8.1,8.21,8.32,8.43,8.54,8.64,8.74,8.85,8.95,9.04,9.14,9.24,9.33,9.43,9.52,9.61,9.69,9.78,9.86,9.93,10,10.1,10.1,10.2,10.3,10.4,10.5,10.6,10.7,10.8,10.9,11,11.2,11.3,11.4,11.5,11.6,11.8,11.9,12,12.2,12.3,12.4,12.5
|
| 61 |
+
"Micronesia, Fed. Sts.",7.64,7.77,7.91,8.04,8.17,8.3,8.43,8.57,8.7,8.84,8.97,9.11,9.24,9.37,9.51,9.64,9.78,9.91,10.1,10.2,10.3,10.4,10.6,10.7,10.8,11,11.1,11.2,11.4,11.5,11.6,11.8,11.9,12,12.1,12.3,12.4,12.5,12.7,12.8,12.9,13,13.2,13.3,13.4,13.5
|
| 62 |
+
Gabon,4.9,5.01,5.11,5.22,5.33,5.44,5.55,5.66,5.77,5.89,6,6.11,6.22,6.33,6.45,6.56,6.67,6.78,6.89,6.99,7.1,7.2,7.3,7.4,7.5,7.59,7.67,7.75,7.84,7.92,8.01,8.1,8.19,8.28,8.38,8.48,8.58,8.68,8.78,8.89,9,9.11,9.23,9.34,9.46,9.58
|
| 63 |
+
UK,8.25,8.39,8.52,8.66,8.79,8.93,9.06,9.2,9.33,9.46,9.6,9.73,9.87,10,10.1,10.3,10.4,10.5,10.7,10.8,10.9,11.1,11.2,11.3,11.4,11.5,11.7,11.8,11.9,12,12.2,12.3,12.4,12.5,12.6,12.8,12.9,13,13.1,13.2,13.4,13.5,13.6,13.7,13.8,13.9
|
| 64 |
+
Georgia,7.02,7.15,7.27,7.4,7.53,7.66,7.78,7.91,8.04,8.18,8.31,8.44,8.57,8.7,8.84,8.97,9.1,9.24,9.37,9.5,9.64,9.77,9.9,10,10.2,10.3,10.4,10.6,10.7,10.8,11,11.1,11.2,11.4,11.5,11.6,11.8,11.9,12,12.2,12.3,12.4,12.6,12.7,12.8,12.9
|
| 65 |
+
Ghana,3.71,3.8,3.89,3.98,4.07,4.16,4.26,4.36,4.45,4.55,4.65,4.76,4.86,4.96,5.07,5.17,5.28,5.38,5.49,5.6,5.71,5.81,5.92,6.03,6.14,6.24,6.35,6.45,6.56,6.67,6.77,6.88,6.99,7.1,7.22,7.33,7.45,7.56,7.68,7.8,7.92,8.05,8.17,8.3,8.43,8.56
|
| 66 |
+
Guinea,1.98,2.03,2.08,2.13,2.19,2.24,2.3,2.36,2.41,2.47,2.54,2.6,2.66,2.73,2.79,2.86,2.93,3,3.07,3.15,3.22,3.3,3.37,3.45,3.54,3.62,3.71,3.8,3.89,3.99,4.08,4.18,4.28,4.38,4.48,4.59,4.69,4.8,4.91,5.02,5.13,5.24,5.36,5.47,5.59,5.7
|
| 67 |
+
Gambia,2.62,2.69,2.76,2.82,2.89,2.96,3.04,3.11,3.19,3.26,3.34,3.42,3.5,3.58,3.66,3.75,3.83,3.92,4.01,4.1,4.19,4.28,4.37,4.47,4.56,4.66,4.75,4.85,4.95,5.05,5.16,5.26,5.37,5.47,5.58,5.69,5.8,5.92,6.03,6.15,6.26,6.38,6.5,6.62,6.75,6.87
|
| 68 |
+
Guinea-Bissau,1.56,1.6,1.64,1.69,1.73,1.78,1.83,1.88,1.93,1.98,2.03,2.09,2.14,2.2,2.26,2.32,2.38,2.45,2.51,2.58,2.65,2.73,2.8,2.88,2.96,3.04,3.12,3.21,3.29,3.38,3.47,3.56,3.65,3.75,3.84,3.94,4.03,4.13,4.23,4.33,4.43,4.53,4.64,4.74,4.85,4.96
|
| 69 |
+
Equatorial Guinea,3.39,3.47,3.55,3.63,3.71,3.8,3.88,3.97,4.06,4.15,4.24,4.33,4.42,4.52,4.62,4.71,4.81,4.91,5.02,5.12,5.23,5.33,5.44,5.55,5.66,5.78,5.89,6.01,6.12,6.24,6.36,6.48,6.61,6.73,6.86,6.99,7.12,7.25,7.38,7.51,7.64,7.78,7.92,8.05,8.19,8.33
|
| 70 |
+
Greece,7.14,7.27,7.4,7.54,7.67,7.8,7.93,8.06,8.2,8.33,8.46,8.6,8.73,8.86,8.99,9.12,9.26,9.39,9.52,9.64,9.77,9.9,10,10.2,10.3,10.4,10.5,10.6,10.8,10.9,11,11.1,11.3,11.4,11.5,11.6,11.8,11.9,12,12.2,12.3,12.4,12.5,12.7,12.8,12.9
|
| 71 |
+
Grenada,5.29,5.4,5.52,5.63,5.74,5.86,5.97,6.09,6.21,6.33,6.45,6.57,6.7,6.82,6.95,7.08,7.2,7.33,7.46,7.59,7.73,7.86,7.99,8.13,8.26,8.39,8.53,8.67,8.8,8.94,9.08,9.22,9.36,9.49,9.63,9.77,9.91,10.1,10.2,10.3,10.5,10.6,10.8,10.9,11,11.2
|
| 72 |
+
Guatemala,3.17,3.24,3.32,3.4,3.48,3.56,3.64,3.72,3.81,3.89,3.98,4.07,4.16,4.25,4.34,4.44,4.53,4.63,4.73,4.83,4.93,5.03,5.13,5.24,5.34,5.45,5.56,5.67,5.78,5.89,6.01,6.13,6.24,6.36,6.48,6.61,6.73,6.85,6.98,7.11,7.24,7.37,7.5,7.63,7.76,7.9
|
| 73 |
+
Guyana,4.95,5.06,5.16,5.27,5.38,5.49,5.6,5.71,5.82,5.94,6.05,6.17,6.29,6.41,6.53,6.65,6.77,6.89,7.01,7.14,7.26,7.39,7.52,7.64,7.77,7.9,8.02,8.15,8.28,8.4,8.53,8.66,8.79,8.93,9.06,9.19,9.33,9.46,9.6,9.73,9.87,10,10.1,10.3,10.4,10.6
|
| 74 |
+
Honduras,3.19,3.27,3.36,3.44,3.53,3.61,3.7,3.8,3.89,3.99,4.08,4.18,4.29,4.39,4.5,4.61,4.72,4.83,4.94,5.06,5.18,5.3,5.42,5.54,5.66,5.78,5.89,6,6.12,6.24,6.36,6.48,6.6,6.72,6.84,6.97,7.1,7.23,7.35,7.48,7.62,7.75,7.88,8.02,8.15,8.29
|
| 75 |
+
Croatia,5.12,5.22,5.32,5.43,5.53,5.64,5.74,5.85,5.96,6.07,6.18,6.29,6.4,6.52,6.63,6.74,6.86,6.97,7.09,7.2,7.32,7.43,7.55,7.66,7.78,7.89,8.01,8.13,8.25,8.37,8.49,8.61,8.74,8.87,9,9.13,9.26,9.39,9.53,9.66,9.8,9.94,10.1,10.2,10.4,10.5
|
| 76 |
+
Haiti,3.07,3.15,3.23,3.3,3.39,3.47,3.55,3.64,3.72,3.81,3.9,3.99,4.08,4.18,4.27,4.37,4.47,4.57,4.67,4.77,4.87,4.97,5.08,5.19,5.29,5.4,5.5,5.6,5.71,5.81,5.92,6.02,6.13,6.25,6.36,6.48,6.59,6.71,6.83,6.96,7.08,7.21,7.33,7.46,7.59,7.72
|
| 77 |
+
Hungary,7.92,8.04,8.16,8.28,8.4,8.51,8.62,8.74,8.85,8.95,9.06,9.17,9.27,9.37,9.47,9.56,9.66,9.75,9.84,9.92,10,10.1,10.2,10.2,10.3,10.4,10.5,10.6,10.7,10.8,10.9,11,11.1,11.2,11.3,11.5,11.6,11.7,11.8,12,12.1,12.2,12.3,12.5,12.6,12.7
|
| 78 |
+
Indonesia,4.76,4.86,4.97,5.07,5.18,5.29,5.4,5.51,5.62,5.73,5.84,5.96,6.07,6.18,6.3,6.41,6.53,6.65,6.76,6.87,6.99,7.1,7.21,7.32,7.43,7.54,7.65,7.75,7.86,7.96,8.07,8.18,8.29,8.4,8.51,8.62,8.73,8.85,8.96,9.08,9.2,9.32,9.45,9.57,9.7,9.83
|
| 79 |
+
India,3.65,3.74,3.83,3.93,4.02,4.12,4.22,4.32,4.42,4.52,4.63,4.73,4.84,4.95,5.06,5.18,5.29,5.41,5.53,5.64,5.77,5.89,6.01,6.13,6.26,6.38,6.51,6.63,6.76,6.88,7.01,7.14,7.26,7.39,7.52,7.65,7.78,7.92,8.05,8.18,8.32,8.45,8.59,8.72,8.86,8.99
|
| 80 |
+
Ireland,7.38,7.52,7.66,7.81,7.96,8.11,8.26,8.41,8.56,8.72,8.87,9.03,9.18,9.34,9.49,9.65,9.81,9.96,10.1,10.3,10.4,10.6,10.7,10.9,11,11.2,11.3,11.4,11.6,11.7,11.8,12,12.1,12.2,12.3,12.5,12.6,12.7,12.8,13,13.1,13.2,13.3,13.5,13.6,13.7
|
| 81 |
+
Iran,4.23,4.36,4.49,4.62,4.76,4.91,5.06,5.22,5.38,5.54,5.72,5.9,6.08,6.27,6.47,6.67,6.88,7.1,7.32,7.54,7.77,8,8.23,8.46,8.68,8.9,9.07,9.24,9.41,9.58,9.74,9.9,10.1,10.2,10.4,10.5,10.7,10.8,11,11.1,11.3,11.4,11.6,11.7,11.9,12
|
| 82 |
+
Iraq,3.47,3.56,3.64,3.73,3.82,3.9,4,4.09,4.18,4.28,4.37,4.47,4.57,4.67,4.78,4.88,4.99,5.1,5.21,5.32,5.43,5.54,5.66,5.77,5.89,6.01,6.12,6.24,6.36,6.47,6.59,6.71,6.84,6.96,7.09,7.22,7.34,7.48,7.61,7.74,7.88,8.01,8.15,8.29,8.43,8.57
|
| 83 |
+
Iceland,5.96,6.07,6.18,6.3,6.41,6.52,6.64,6.76,6.87,6.99,7.11,7.23,7.35,7.47,7.59,7.71,7.83,7.95,8.07,8.19,8.32,8.44,8.56,8.68,8.8,8.92,9.04,9.16,9.28,9.4,9.52,9.64,9.77,9.89,10,10.1,10.3,10.4,10.5,10.7,10.8,10.9,11.1,11.2,11.3,11.5
|
| 84 |
+
Israel,9.8,9.92,10,10.2,10.3,10.4,10.5,10.6,10.7,10.8,10.9,11,11.1,11.2,11.3,11.4,11.5,11.6,11.6,11.7,11.8,11.9,11.9,12,12.1,12.2,12.3,12.4,12.5,12.6,12.7,12.8,12.9,13,13.1,13.2,13.3,13.4,13.6,13.7,13.8,13.9,14,14.1,14.2,14.3
|
| 85 |
+
Italy,8.95,9.06,9.18,9.29,9.4,9.5,9.6,9.7,9.8,9.9,9.99,10.1,10.2,10.3,10.3,10.4,10.5,10.6,10.7,10.7,10.8,10.8,10.9,11,11,11.1,11.2,11.3,11.3,11.4,11.5,11.6,11.7,11.8,11.9,12,12.1,12.3,12.4,12.5,12.6,12.7,12.8,13,13.1,13.2
|
| 86 |
+
Jamaica,6.2,6.33,6.45,6.58,6.71,6.84,6.98,7.11,7.25,7.38,7.52,7.66,7.8,7.95,8.09,8.23,8.37,8.52,8.66,8.81,8.95,9.1,9.24,9.39,9.53,9.67,9.81,9.94,10.1,10.2,10.3,10.5,10.6,10.7,10.9,11,11.1,11.3,11.4,11.5,11.7,11.8,11.9,12,12.2,12.3
|
| 87 |
+
Jordan,6.48,6.61,6.74,6.87,7,7.14,7.27,7.41,7.54,7.68,7.82,7.96,8.1,8.24,8.38,8.52,8.65,8.79,8.93,9.07,9.21,9.34,9.48,9.61,9.74,9.87,9.99,10.1,10.2,10.4,10.5,10.6,10.7,10.8,11,11.1,11.2,11.3,11.5,11.6,11.7,11.8,12,12.1,12.2,12.3
|
| 88 |
+
Japan,9.33,9.46,9.58,9.71,9.83,9.96,10.1,10.2,10.3,10.4,10.6,10.7,10.8,10.9,11.1,11.2,11.3,11.4,11.5,11.7,11.8,11.9,12,12.1,12.2,12.3,12.5,12.6,12.7,12.8,13,13.1,13.2,13.3,13.5,13.6,13.7,13.8,13.9,14.1,14.2,14.3,14.4,14.5,14.6,14.7
|
| 89 |
+
Kazakhstan,6.56,6.69,6.81,6.93,7.05,7.18,7.31,7.43,7.56,7.69,7.82,7.95,8.08,8.21,8.34,8.47,8.6,8.73,8.87,9,9.13,9.27,9.4,9.53,9.66,9.8,9.92,10.1,10.2,10.3,10.4,10.6,10.7,10.8,11,11.1,11.2,11.3,11.5,11.6,11.7,11.9,12,12.1,12.3,12.4
|
| 90 |
+
Kenya,4.15,4.25,4.34,4.44,4.54,4.64,4.74,4.85,4.95,5.06,5.16,5.27,5.37,5.48,5.59,5.69,5.8,5.91,6.01,6.12,6.23,6.33,6.44,6.54,6.65,6.75,6.85,6.95,7.05,7.16,7.26,7.37,7.48,7.59,7.7,7.81,7.93,8.05,8.17,8.29,8.41,8.54,8.67,8.8,8.93,9.06
|
| 91 |
+
Kyrgyz Republic,7.09,7.21,7.34,7.47,7.6,7.72,7.85,7.98,8.11,8.24,8.37,8.5,8.62,8.75,8.88,9,9.13,9.25,9.38,9.5,9.62,9.74,9.86,9.97,10.1,10.2,10.3,10.4,10.5,10.6,10.7,10.8,10.9,11,11.1,11.2,11.3,11.4,11.6,11.7,11.8,11.9,12,12.2,12.3,12.4
|
| 92 |
+
Cambodia,2.92,2.99,3.06,3.13,3.21,3.28,3.35,3.43,3.51,3.59,3.67,3.75,3.83,3.92,4,4.09,4.18,4.27,4.36,4.46,4.55,4.65,4.75,4.85,4.95,5.06,5.16,5.27,5.39,5.5,5.61,5.73,5.85,5.97,6.09,6.21,6.34,6.46,6.59,6.72,6.85,6.98,7.12,7.25,7.39,7.52
|
| 93 |
+
Kiribati,5.62,5.73,5.83,5.93,6.03,6.13,6.23,6.33,6.43,6.53,6.63,6.72,6.81,6.9,6.99,7.08,7.17,7.25,7.33,7.4,7.48,7.55,7.61,7.67,7.73,7.77,7.83,7.89,7.96,8.04,8.11,8.2,8.28,8.38,8.47,8.57,8.67,8.78,8.88,9,9.11,9.22,9.34,9.46,9.59,9.71
|
| 94 |
+
South Korea,8.87,8.99,9.12,9.24,9.37,9.49,9.62,9.74,9.86,9.98,10.1,10.2,10.3,10.5,10.6,10.7,10.8,10.9,11,11.1,11.2,11.3,11.5,11.6,11.7,11.8,11.9,12,12.1,12.2,12.3,12.4,12.5,12.6,12.7,12.8,12.9,13.1,13.2,13.3,13.4,13.5,13.6,13.7,13.8,13.9
|
| 95 |
+
Kuwait,5.15,5.28,5.4,5.53,5.66,5.79,5.92,6.06,6.2,6.34,6.48,6.62,6.77,6.92,7.07,7.23,7.38,7.54,7.7,7.86,8.02,8.18,8.35,8.52,8.7,8.88,9.04,9.19,9.35,9.5,9.66,9.81,9.96,10.1,10.3,10.4,10.5,10.7,10.8,11,11.1,11.3,11.4,11.5,11.7,11.8
|
| 96 |
+
Lao,2.76,2.82,2.89,2.96,3.03,3.1,3.18,3.25,3.33,3.4,3.48,3.57,3.65,3.73,3.82,3.91,4,4.09,4.18,4.28,4.38,4.47,4.58,4.68,4.79,4.9,5.01,5.13,5.24,5.36,5.48,5.61,5.73,5.85,5.98,6.11,6.23,6.36,6.49,6.63,6.76,6.89,7.03,7.16,7.3,7.43
|
| 97 |
+
Lebanon,4.69,4.79,4.89,5,5.1,5.21,5.32,5.43,5.55,5.66,5.78,5.9,6.02,6.14,6.26,6.38,6.51,6.64,6.77,6.9,7.03,7.17,7.3,7.44,7.58,7.72,7.87,8.01,8.16,8.3,8.45,8.6,8.74,8.89,9.04,9.19,9.33,9.48,9.63,9.77,9.92,10.1,10.2,10.3,10.5,10.6
|
| 98 |
+
Liberia,2.46,2.52,2.59,2.66,2.72,2.79,2.86,2.94,3.01,3.08,3.16,3.23,3.31,3.39,3.47,3.56,3.64,3.72,3.81,3.89,3.98,4.07,4.15,4.24,4.33,4.41,4.49,4.58,4.67,4.76,4.85,4.94,5.04,5.14,5.24,5.34,5.44,5.55,5.66,5.77,5.88,5.99,6.11,6.22,6.34,6.46
|
| 99 |
+
Libya,4.14,4.23,4.33,4.42,4.52,4.62,4.72,4.83,4.93,5.03,5.14,5.25,5.36,5.47,5.58,5.7,5.81,5.93,6.05,6.17,6.29,6.41,6.54,6.66,6.79,6.91,7.04,7.17,7.3,7.43,7.56,7.69,7.83,7.96,8.09,8.23,8.37,8.5,8.64,8.78,8.92,9.06,9.19,9.33,9.47,9.61
|
| 100 |
+
St. Lucia,5.59,5.7,5.82,5.93,6.05,6.17,6.28,6.4,6.52,6.64,6.77,6.89,7.01,7.14,7.26,7.39,7.51,7.64,7.76,7.89,8.02,8.14,8.27,8.4,8.52,8.65,8.78,8.91,9.04,9.17,9.3,9.43,9.56,9.7,9.83,9.97,10.1,10.2,10.4,10.5,10.7,10.8,10.9,11.1,11.2,11.3
|
| 101 |
+
Sri Lanka,6.09,6.2,6.31,6.41,6.52,6.63,6.74,6.85,6.96,7.07,7.18,7.28,7.39,7.5,7.61,7.72,7.82,7.93,8.03,8.14,8.24,8.34,8.44,8.54,8.64,8.73,8.86,8.98,9.11,9.23,9.36,9.49,9.62,9.76,9.89,10,10.2,10.3,10.4,10.6,10.7,10.8,11,11.1,11.2,11.4
|
| 102 |
+
Lesotho,3.28,3.36,3.44,3.52,3.61,3.69,3.78,3.87,3.96,4.05,4.15,4.24,4.34,4.44,4.54,4.64,4.75,4.85,4.96,5.07,5.18,5.29,5.41,5.53,5.64,5.76,5.89,6.01,6.13,6.26,6.38,6.51,6.64,6.77,6.9,7.03,7.16,7.29,7.43,7.56,7.7,7.83,7.97,8.11,8.25,8.39
|
| 103 |
+
Lithuania,6.58,6.7,6.81,6.93,7.05,7.17,7.29,7.41,7.53,7.65,7.77,7.89,8,8.12,8.24,8.35,8.47,8.58,8.69,8.8,8.91,9.01,9.12,9.22,9.32,9.42,9.51,9.6,9.69,9.78,9.88,9.97,10.1,10.2,10.3,10.4,10.5,10.6,10.7,10.8,10.9,11.1,11.2,11.3,11.4,11.6
|
| 104 |
+
Luxembourg,6.14,6.25,6.37,6.49,6.6,6.72,6.84,6.96,7.09,7.21,7.33,7.46,7.58,7.71,7.83,7.96,8.09,8.21,8.34,8.47,8.6,8.73,8.86,8.99,9.12,9.25,9.38,9.51,9.64,9.77,9.9,10,10.2,10.3,10.4,10.6,10.7,10.8,11,11.1,11.3,11.4,11.5,11.7,11.8,12
|
| 105 |
+
Latvia,6.53,6.65,6.77,6.89,7.01,7.13,7.25,7.37,7.49,7.61,7.73,7.85,7.97,8.09,8.21,8.33,8.45,8.56,8.68,8.79,8.9,9.01,9.12,9.23,9.34,9.44,9.54,9.64,9.75,9.85,9.95,10.1,10.2,10.3,10.4,10.5,10.6,10.7,10.9,11,11.1,11.2,11.4,11.5,11.6,11.8
|
| 106 |
+
Morocco,2.77,2.84,2.91,2.98,3.05,3.13,3.2,3.28,3.36,3.43,3.51,3.6,3.68,3.76,3.85,3.94,4.03,4.12,4.21,4.3,4.4,4.49,4.59,4.69,4.79,4.89,5,5.1,5.21,5.32,5.43,5.55,5.66,5.77,5.89,6.01,6.13,6.25,6.37,6.5,6.62,6.75,6.87,7,7.13,7.26
|
| 107 |
+
Moldova,6.42,6.54,6.66,6.78,6.9,7.02,7.15,7.27,7.39,7.52,7.64,7.77,7.89,8.02,8.14,8.27,8.39,8.52,8.64,8.77,8.89,9.01,9.14,9.26,9.38,9.51,9.63,9.76,9.88,10,10.1,10.3,10.4,10.5,10.7,10.8,10.9,11.1,11.2,11.3,11.5,11.6,11.7,11.9,12,12.2
|
| 108 |
+
Madagascar,2.17,2.23,2.28,2.34,2.39,2.45,2.51,2.57,2.63,2.69,2.76,2.82,2.89,2.96,3.02,3.09,3.16,3.24,3.31,3.39,3.46,3.54,3.62,3.7,3.78,3.86,3.95,4.03,4.12,4.21,4.3,4.39,4.49,4.59,4.69,4.79,4.89,4.99,5.1,5.21,5.31,5.43,5.54,5.65,5.77,5.88
|
| 109 |
+
Maldives,3.58,3.66,3.75,3.83,3.92,4,4.09,4.18,4.27,4.36,4.46,4.55,4.65,4.75,4.85,4.95,5.05,5.16,5.26,5.37,5.48,5.59,5.7,5.81,5.93,6.04,6.16,6.28,6.4,6.52,6.64,6.77,6.89,7.02,7.15,7.28,7.41,7.54,7.67,7.8,7.93,8.07,8.2,8.34,8.48,8.61
|
| 110 |
+
Mexico,4.99,5.1,5.22,5.33,5.45,5.56,5.68,5.8,5.92,6.04,6.17,6.29,6.42,6.55,6.68,6.8,6.93,7.07,7.2,7.33,7.46,7.59,7.72,7.85,7.99,8.12,8.24,8.37,8.5,8.63,8.76,8.89,9.03,9.16,9.29,9.43,9.56,9.7,9.83,9.97,10.1,10.2,10.4,10.5,10.7,10.8
|
| 111 |
+
Marshall Islands,4.09,4.18,4.27,4.36,4.46,4.55,4.65,4.75,4.85,4.95,5.05,5.15,5.25,5.36,5.46,5.57,5.68,5.79,5.9,6.01,6.12,6.24,6.35,6.47,6.59,6.7,6.82,6.95,7.07,7.19,7.32,7.45,7.57,7.7,7.84,7.97,8.1,8.23,8.37,8.51,8.64,8.78,8.92,9.06,9.2,9.34
|
| 112 |
+
North Macedonia,6.22,6.33,6.45,6.57,6.69,6.81,6.93,7.05,7.17,7.3,7.42,7.54,7.67,7.79,7.91,8.04,8.16,8.29,8.41,8.53,8.66,8.78,8.9,9.03,9.15,9.27,9.39,9.51,9.63,9.75,9.87,10,10.1,10.3,10.4,10.5,10.6,10.8,10.9,11,11.2,11.3,11.4,11.6,11.7,11.8
|
| 113 |
+
Mali,1.26,1.29,1.33,1.36,1.4,1.43,1.47,1.5,1.54,1.58,1.62,1.66,1.7,1.74,1.79,1.83,1.88,1.92,1.97,2.02,2.06,2.11,2.16,2.22,2.27,2.32,2.38,2.44,2.5,2.56,2.63,2.69,2.76,2.83,2.9,2.97,3.04,3.11,3.19,3.27,3.35,3.43,3.51,3.59,3.67,3.76
|
| 114 |
+
Malta,5.62,5.72,5.81,5.91,6,6.1,6.2,6.29,6.39,6.48,6.58,6.67,6.77,6.87,6.96,7.06,7.15,7.25,7.34,7.44,7.53,7.63,7.72,7.82,7.92,8.02,8.14,8.26,8.39,8.52,8.64,8.77,8.91,9.04,9.17,9.31,9.44,9.58,9.72,9.85,9.99,10.1,10.3,10.4,10.6,10.7
|
| 115 |
+
Myanmar,3.07,3.15,3.22,3.3,3.37,3.45,3.53,3.61,3.69,3.78,3.86,3.95,4.04,4.12,4.22,4.31,4.4,4.5,4.59,4.69,4.79,4.89,4.99,5.1,5.2,5.31,5.42,5.53,5.65,5.76,5.88,6,6.12,6.24,6.36,6.48,6.61,6.73,6.86,6.99,7.12,7.25,7.38,7.52,7.65,7.79
|
| 116 |
+
Montenegro,6.3,6.42,6.54,6.66,6.78,6.91,7.03,7.16,7.28,7.41,7.54,7.67,7.8,7.93,8.06,8.19,8.32,8.45,8.59,8.72,8.85,8.99,9.12,9.26,9.39,9.53,9.66,9.8,9.94,10.1,10.2,10.3,10.5,10.6,10.8,10.9,11,11.2,11.3,11.4,11.6,11.7,11.9,12,12.1,12.3
|
| 117 |
+
Mongolia,4.61,4.7,4.8,4.89,4.99,5.09,5.19,5.29,5.39,5.49,5.59,5.69,5.8,5.9,6.01,6.11,6.22,6.32,6.43,6.54,6.64,6.75,6.86,6.97,7.08,7.19,7.3,7.42,7.53,7.65,7.78,7.9,8.03,8.16,8.29,8.43,8.56,8.7,8.84,8.99,9.13,9.27,9.42,9.57,9.72,9.86
|
| 118 |
+
Mozambique,1.58,1.62,1.66,1.71,1.75,1.8,1.85,1.9,1.95,2,2.05,2.1,2.16,2.22,2.27,2.33,2.39,2.45,2.52,2.58,2.65,2.72,2.79,2.86,2.93,3,3.08,3.15,3.23,3.31,3.4,3.48,3.56,3.65,3.74,3.83,3.92,4.01,4.1,4.2,4.29,4.39,4.49,4.59,4.69,4.79
|
| 119 |
+
Mauritania,2.35,2.41,2.47,2.53,2.59,2.66,2.72,2.79,2.86,2.93,3,3.07,3.14,3.22,3.3,3.37,3.45,3.53,3.62,3.7,3.78,3.87,3.96,4.05,4.14,4.23,4.32,4.42,4.51,4.61,4.71,4.81,4.91,5.01,5.12,5.22,5.33,5.44,5.55,5.66,5.77,5.89,6,6.12,6.24,6.36
|
| 120 |
+
Mauritius,4.89,5,5.11,5.22,5.33,5.44,5.56,5.68,5.8,5.92,6.04,6.16,6.28,6.41,6.54,6.67,6.79,6.92,7.06,7.19,7.32,7.46,7.59,7.73,7.86,8,8.13,8.27,8.41,8.55,8.69,8.83,8.97,9.11,9.25,9.39,9.53,9.67,9.81,9.95,10.1,10.2,10.4,10.5,10.7,10.8
|
| 121 |
+
Malawi,2.83,2.9,2.97,3.04,3.1,3.17,3.25,3.32,3.39,3.47,3.54,3.62,3.7,3.77,3.85,3.93,4.02,4.1,4.18,4.26,4.35,4.43,4.52,4.6,4.69,4.78,4.87,4.95,5.05,5.14,5.23,5.33,5.43,5.53,5.63,5.73,5.84,5.94,6.05,6.16,6.27,6.38,6.5,6.61,6.73,6.85
|
| 122 |
+
Malaysia,6.28,6.41,6.54,6.66,6.79,6.92,7.05,7.18,7.3,7.43,7.56,7.69,7.82,7.95,8.08,8.21,8.34,8.47,8.6,8.72,8.85,8.98,9.1,9.23,9.35,9.47,9.6,9.73,9.85,9.98,10.1,10.2,10.4,10.5,10.6,10.8,10.9,11,11.2,11.3,11.4,11.6,11.7,11.8,12,12.1
|
| 123 |
+
Namibia,3.6,3.68,3.77,3.86,3.94,4.03,4.13,4.22,4.31,4.41,4.51,4.6,4.71,4.81,4.91,5.02,5.12,5.23,5.34,5.45,5.57,5.68,5.8,5.91,6.03,6.15,6.27,6.39,6.52,6.64,6.76,6.89,7.02,7.15,7.28,7.41,7.54,7.67,7.81,7.94,8.08,8.22,8.35,8.49,8.63,8.77
|
| 124 |
+
Niger,1.17,1.2,1.23,1.26,1.3,1.33,1.37,1.4,1.44,1.48,1.52,1.55,1.6,1.64,1.68,1.72,1.77,1.81,1.86,1.91,1.96,2.01,2.06,2.11,2.16,2.22,2.27,2.33,2.39,2.45,2.51,2.57,2.64,2.7,2.77,2.84,2.91,2.98,3.05,3.12,3.2,3.28,3.36,3.44,3.52,3.6
|
| 125 |
+
Nigeria,3.88,3.97,4.06,4.16,4.25,4.35,4.45,4.55,4.65,4.76,4.86,4.97,5.08,5.19,5.31,5.42,5.53,5.65,5.77,5.89,6.01,6.13,6.26,6.38,6.51,6.64,6.76,6.89,7.02,7.15,7.29,7.42,7.55,7.68,7.82,7.95,8.09,8.22,8.36,8.49,8.63,8.76,8.9,9.03,9.17,9.3
|
| 126 |
+
Nicaragua,3.27,3.34,3.42,3.5,3.58,3.66,3.75,3.83,3.92,4.01,4.09,4.19,4.28,4.37,4.47,4.56,4.66,4.76,4.86,4.96,5.06,5.17,5.27,5.38,5.49,5.6,5.71,5.82,5.93,6.05,6.16,6.28,6.4,6.52,6.64,6.76,6.89,7.02,7.14,7.27,7.4,7.53,7.67,7.8,7.93,8.07
|
| 127 |
+
Netherlands,8.38,8.5,8.63,8.75,8.88,9,9.12,9.25,9.37,9.49,9.61,9.73,9.84,9.96,10.1,10.2,10.3,10.4,10.5,10.6,10.7,10.8,10.9,11,11.1,11.2,11.3,11.4,11.5,11.6,11.7,11.8,11.9,12,12.1,12.2,12.3,12.5,12.6,12.7,12.8,12.9,13.1,13.2,13.3,13.4
|
| 128 |
+
Norway,8.15,8.28,8.42,8.55,8.68,8.82,8.95,9.09,9.22,9.36,9.49,9.63,9.77,9.9,10,10.2,10.3,10.4,10.6,10.7,10.9,11,11.1,11.3,11.4,11.5,11.7,11.8,11.9,12.1,12.2,12.3,12.5,12.6,12.8,12.9,13,13.1,13.3,13.4,13.5,13.6,13.8,13.9,14,14.1
|
| 129 |
+
Nepal,3.11,3.18,3.26,3.33,3.41,3.49,3.57,3.66,3.74,3.83,3.92,4.01,4.1,4.19,4.29,4.38,4.48,4.58,4.68,4.78,4.89,4.99,5.1,5.21,5.32,5.43,5.55,5.67,5.78,5.9,6.03,6.15,6.27,6.4,6.52,6.65,6.78,6.91,7.04,7.17,7.3,7.44,7.57,7.71,7.84,7.98
|
| 130 |
+
New Zealand,9.16,9.28,9.41,9.53,9.65,9.77,9.89,10,10.1,10.2,10.3,10.5,10.6,10.7,10.8,10.9,11,11.1,11.2,11.3,11.4,11.6,11.7,11.8,11.9,12,12.1,12.2,12.3,12.4,12.5,12.6,12.7,12.8,12.9,13.1,13.2,13.3,13.4,13.5,13.7,13.8,13.9,14,14.1,14.3
|
| 131 |
+
Oman,4.59,4.69,4.79,4.9,5,5.11,5.22,5.33,5.44,5.55,5.66,5.78,5.89,6.01,6.13,6.25,6.37,6.5,6.62,6.75,6.87,7,7.13,7.26,7.39,7.52,7.65,7.79,7.92,8.05,8.19,8.33,8.46,8.6,8.74,8.88,9.02,9.15,9.29,9.43,9.57,9.71,9.86,10,10.1,10.3
|
| 132 |
+
Pakistan,2.87,2.94,3.02,3.09,3.17,3.26,3.34,3.42,3.51,3.6,3.69,3.78,3.88,3.98,4.08,4.18,4.29,4.39,4.5,4.61,4.73,4.84,4.96,5.08,5.2,5.32,5.44,5.55,5.66,5.78,5.89,6.01,6.12,6.24,6.36,6.48,6.6,6.72,6.84,6.96,7.09,7.21,7.34,7.47,7.6,7.73
|
| 133 |
+
Panama,5.83,5.94,6.05,6.16,6.28,6.39,6.51,6.62,6.74,6.85,6.97,7.09,7.2,7.32,7.43,7.55,7.66,7.78,7.89,8,8.11,8.22,8.33,8.44,8.54,8.64,8.75,8.87,8.98,9.1,9.22,9.34,9.46,9.58,9.7,9.83,9.95,10.1,10.2,10.3,10.5,10.6,10.7,10.9,11,11.1
|
| 134 |
+
Peru,6.4,6.52,6.64,6.76,6.88,6.99,7.1,7.22,7.33,7.44,7.55,7.66,7.76,7.87,7.98,8.08,8.18,8.29,8.39,8.49,8.59,8.68,8.78,8.87,8.97,9.06,9.16,9.26,9.37,9.48,9.59,9.7,9.81,9.93,10.1,10.2,10.3,10.4,10.5,10.7,10.8,10.9,11.1,11.2,11.3,11.5
|
| 135 |
+
Philippines,6.04,6.15,6.26,6.37,6.48,6.58,6.69,6.8,6.9,7,7.1,7.2,7.3,7.4,7.49,7.59,7.68,7.77,7.85,7.94,8.02,8.1,8.18,8.26,8.33,8.4,8.48,8.55,8.63,8.71,8.8,8.88,8.97,9.06,9.16,9.25,9.35,9.46,9.56,9.67,9.79,9.9,10,10.1,10.3,10.4
|
| 136 |
+
Papua New Guinea,3.45,3.53,3.61,3.69,3.77,3.85,3.94,4.03,4.12,4.21,4.3,4.39,4.48,4.58,4.67,4.77,4.87,4.97,5.07,5.18,5.28,5.39,5.49,5.6,5.71,5.82,5.93,6.05,6.17,6.28,6.4,6.53,6.65,6.77,6.9,7.03,7.16,7.29,7.42,7.55,7.68,7.82,7.95,8.09,8.22,8.36
|
| 137 |
+
Poland,7.97,8.09,8.22,8.34,8.46,8.58,8.7,8.82,8.94,9.05,9.16,9.27,9.38,9.49,9.6,9.7,9.8,9.9,10,10.1,10.2,10.3,10.4,10.5,10.6,10.7,10.7,10.8,10.9,11,11.2,11.3,11.4,11.5,11.6,11.7,11.8,11.9,12.1,12.2,12.3,12.4,12.6,12.7,12.8,12.9
|
| 138 |
+
North Korea,7.22,7.35,7.48,7.61,7.75,7.88,8.02,8.15,8.29,8.42,8.56,8.7,8.84,8.97,9.11,9.25,9.39,9.53,9.67,9.81,9.95,10.1,10.2,10.4,10.5,10.7,10.8,10.9,11.1,11.2,11.3,11.5,11.6,11.8,11.9,12,12.2,12.3,12.4,12.6,12.7,12.8,12.9,13.1,13.2,13.3
|
| 139 |
+
Portugal,5.06,5.15,5.24,5.33,5.43,5.52,5.61,5.71,5.81,5.9,6,6.1,6.2,6.3,6.4,6.5,6.6,6.7,6.8,6.91,7.02,7.12,7.23,7.34,7.46,7.58,7.71,7.84,7.97,8.1,8.24,8.38,8.51,8.65,8.79,8.93,9.07,9.22,9.36,9.5,9.64,9.79,9.93,10.1,10.2,10.4
|
| 140 |
+
Paraguay,4.21,4.31,4.4,4.49,4.59,4.68,4.78,4.88,4.98,5.08,5.18,5.28,5.38,5.48,5.59,5.69,5.8,5.9,6,6.11,6.21,6.32,6.42,6.52,6.63,6.73,6.83,6.94,7.05,7.16,7.27,7.39,7.5,7.62,7.74,7.86,7.99,8.11,8.24,8.36,8.49,8.62,8.76,8.89,9.02,9.16
|
| 141 |
+
Palestine,5.52,5.63,5.74,5.86,5.97,6.09,6.21,6.33,6.45,6.57,6.69,6.81,6.93,7.06,7.18,7.31,7.43,7.56,7.69,7.81,7.94,8.06,8.19,8.32,8.44,8.57,8.69,8.81,8.93,9.05,9.17,9.3,9.42,9.55,9.67,9.8,9.93,10.1,10.2,10.3,10.4,10.6,10.7,10.8,11,11.1
|
| 142 |
+
Qatar,3.87,3.96,4.05,4.14,4.23,4.33,4.42,4.52,4.61,4.71,4.81,4.92,5.02,5.12,5.23,5.33,5.44,5.55,5.66,5.77,5.88,5.99,6.11,6.22,6.33,6.45,6.55,6.66,6.76,6.87,6.98,7.1,7.21,7.33,7.44,7.56,7.68,7.8,7.92,8.05,8.17,8.3,8.42,8.55,8.68,8.81
|
| 143 |
+
Romania,8.18,8.31,8.43,8.55,8.67,8.78,8.89,9,9.1,9.21,9.3,9.4,9.49,9.58,9.66,9.74,9.82,9.89,9.96,10,10.1,10.1,10.2,10.2,10.3,10.3,10.3,10.4,10.5,10.6,10.7,10.8,10.9,11,11.1,11.2,11.3,11.4,11.5,11.7,11.8,11.9,12,12.1,12.3,12.4
|
| 144 |
+
Russia,7.56,7.69,7.82,7.95,8.08,8.21,8.34,8.47,8.6,8.73,8.86,8.99,9.12,9.24,9.37,9.49,9.61,9.73,9.85,9.96,10.1,10.2,10.3,10.4,10.5,10.6,10.7,10.8,10.9,11,11.1,11.3,11.4,11.5,11.6,11.7,11.8,11.9,12.1,12.2,12.3,12.4,12.6,12.7,12.8,12.9
|
| 145 |
+
Rwanda,2.28,2.33,2.39,2.45,2.51,2.57,2.63,2.69,2.75,2.82,2.88,2.95,3.01,3.08,3.15,3.22,3.29,3.36,3.43,3.5,3.57,3.65,3.72,3.79,3.87,3.94,4.02,4.09,4.17,4.25,4.34,4.42,4.51,4.6,4.69,4.78,4.87,4.97,5.07,5.17,5.27,5.38,5.49,5.6,5.71,5.82
|
| 146 |
+
Saudi Arabia,5.81,5.92,6.04,6.16,6.28,6.4,6.52,6.65,6.77,6.9,7.03,7.16,7.28,7.42,7.55,7.68,7.81,7.95,8.08,8.22,8.35,8.49,8.63,8.77,8.91,9.05,9.19,9.33,9.47,9.61,9.75,9.89,10,10.2,10.3,10.5,10.6,10.7,10.9,11,11.2,11.3,11.4,11.6,11.7,11.9
|
| 147 |
+
Sudan,3.91,3.99,4.08,4.17,4.25,4.34,4.43,4.52,4.61,4.7,4.79,4.88,4.97,5.06,5.15,5.23,5.32,5.41,5.49,5.58,5.66,5.74,5.82,5.89,5.97,6.04,6.1,6.16,6.23,6.3,6.37,6.44,6.52,6.6,6.69,6.78,6.86,6.96,7.05,7.15,7.25,7.35,7.46,7.57,7.68,7.79
|
| 148 |
+
Senegal,1.88,1.92,1.97,2.02,2.07,2.12,2.18,2.23,2.29,2.34,2.4,2.46,2.52,2.58,2.64,2.71,2.77,2.84,2.9,2.97,3.04,3.11,3.19,3.26,3.33,3.41,3.49,3.56,3.64,3.73,3.81,3.89,3.98,4.07,4.16,4.25,4.34,4.44,4.53,4.63,4.73,4.83,4.94,5.04,5.15,5.26
|
| 149 |
+
Singapore,6.42,6.55,6.67,6.8,6.93,7.07,7.2,7.34,7.48,7.61,7.76,7.9,8.05,8.19,8.34,8.49,8.65,8.8,8.96,9.12,9.28,9.45,9.62,9.79,9.96,10.1,10.3,10.5,10.7,10.8,11,11.2,11.3,11.5,11.6,11.8,11.9,12.1,12.2,12.4,12.5,12.7,12.8,12.9,13.1,13.2
|
| 150 |
+
Solomon Islands,3.72,3.81,3.9,3.99,4.08,4.18,4.27,4.37,4.47,4.58,4.68,4.79,4.9,5.01,5.12,5.24,5.36,5.48,5.6,5.73,5.86,5.99,6.12,6.26,6.4,6.55,6.69,6.83,6.97,7.11,7.25,7.39,7.53,7.68,7.82,7.96,8.1,8.25,8.39,8.53,8.68,8.82,8.96,9.11,9.25,9.4
|
| 151 |
+
Sierra Leone,1.76,1.81,1.87,1.92,1.98,2.04,2.1,2.16,2.22,2.29,2.36,2.43,2.5,2.58,2.66,2.74,2.82,2.91,2.99,3.08,3.18,3.27,3.37,3.47,3.57,3.68,3.78,3.88,3.99,4.1,4.21,4.31,4.43,4.54,4.65,4.77,4.88,5,5.12,5.24,5.36,5.48,5.6,5.72,5.84,5.97
|
| 152 |
+
El Salvador,3.53,3.62,3.72,3.81,3.91,4.01,4.12,4.22,4.33,4.44,4.56,4.67,4.79,4.92,5.04,5.17,5.3,5.44,5.57,5.71,5.86,6,6.15,6.29,6.44,6.59,6.72,6.85,6.99,7.12,7.26,7.39,7.53,7.66,7.8,7.94,8.08,8.22,8.36,8.5,8.64,8.78,8.92,9.06,9.2,9.34
|
| 153 |
+
Somalia,1.35,1.38,1.42,1.46,1.49,1.53,1.57,1.61,1.66,1.7,1.74,1.79,1.83,1.88,1.93,1.97,2.02,2.08,2.13,2.18,2.23,2.29,2.35,2.4,2.46,2.52,2.58,2.65,2.71,2.78,2.84,2.91,2.98,3.05,3.13,3.2,3.28,3.35,3.43,3.51,3.6,3.68,3.76,3.85,3.94,4.03
|
| 154 |
+
Serbia,5.31,5.42,5.52,5.63,5.74,5.85,5.96,6.07,6.19,6.3,6.42,6.54,6.66,6.78,6.9,7.02,7.14,7.27,7.39,7.52,7.65,7.78,7.91,8.04,8.18,8.31,8.46,8.6,8.75,8.9,9.05,9.2,9.34,9.5,9.65,9.8,9.95,10.1,10.3,10.4,10.6,10.7,10.9,11,11.2,11.3
|
| 155 |
+
South Sudan,0.97,1,1.02,1.05,1.08,1.11,1.14,1.17,1.2,1.23,1.26,1.3,1.33,1.36,1.4,1.44,1.47,1.51,1.55,1.59,1.63,1.67,1.71,1.76,1.8,1.85,1.9,1.94,1.99,2.04,2.1,2.15,2.2,2.26,2.31,2.37,2.43,2.49,2.55,2.62,2.68,2.75,2.81,2.88,2.95,3.02
|
| 156 |
+
Sao Tome and Principe,2.78,2.85,2.92,2.99,3.06,3.14,3.21,3.29,3.37,3.45,3.53,3.62,3.7,3.79,3.88,3.97,4.07,4.16,4.26,4.36,4.46,4.56,4.67,4.77,4.88,4.99,5.1,5.22,5.33,5.45,5.57,5.69,5.81,5.93,6.05,6.17,6.29,6.42,6.55,6.67,6.8,6.93,7.06,7.19,7.32,7.45
|
| 157 |
+
Suriname,4.01,4.1,4.19,4.28,4.38,4.47,4.57,4.67,4.77,4.87,4.97,5.08,5.18,5.29,5.4,5.51,5.62,5.73,5.85,5.96,6.08,6.2,6.32,6.44,6.56,6.68,6.81,6.94,7.07,7.2,7.33,7.46,7.59,7.73,7.86,8,8.14,8.27,8.41,8.55,8.69,8.83,8.97,9.11,9.25,9.4
|
| 158 |
+
Slovak Republic,6.25,6.37,6.49,6.6,6.72,6.84,6.96,7.08,7.19,7.32,7.44,7.56,7.68,7.8,7.92,8.04,8.16,8.28,8.4,8.52,8.64,8.76,8.88,9,9.12,9.23,9.34,9.45,9.57,9.68,9.79,9.91,10,10.1,10.3,10.4,10.5,10.6,10.7,10.9,11,11.1,11.2,11.4,11.5,11.6
|
| 159 |
+
Slovenia,6.08,6.2,6.31,6.43,6.55,6.67,6.79,6.91,7.03,7.15,7.28,7.4,7.53,7.66,7.78,7.91,8.04,8.17,8.3,8.43,8.56,8.7,8.83,8.96,9.09,9.23,9.36,9.49,9.62,9.75,9.88,10,10.2,10.3,10.4,10.6,10.7,10.8,11,11.1,11.2,11.4,11.5,11.7,11.8,11.9
|
| 160 |
+
Sweden,8.69,8.82,8.95,9.07,9.2,9.33,9.45,9.58,9.7,9.83,9.95,10.1,10.2,10.3,10.4,10.6,10.7,10.8,10.9,11.1,11.2,11.3,11.4,11.5,11.7,11.8,11.9,12,12.1,12.2,12.4,12.5,12.6,12.7,12.9,13,13.1,13.2,13.4,13.5,13.6,13.7,13.8,14,14.1,14.2
|
| 161 |
+
Eswatini,3.69,3.78,3.88,3.97,4.07,4.18,4.28,4.39,4.5,4.61,4.72,4.84,4.95,5.07,5.19,5.32,5.44,5.57,5.7,5.83,5.96,6.09,6.22,6.36,6.49,6.63,6.74,6.86,6.98,7.1,7.22,7.34,7.46,7.59,7.71,7.84,7.97,8.09,8.23,8.36,8.49,8.62,8.76,8.89,9.03,9.17
|
| 162 |
+
Seychelles,4.7,4.82,4.93,5.05,5.17,5.3,5.43,5.56,5.69,5.83,5.96,6.11,6.25,6.4,6.55,6.7,6.86,7.01,7.17,7.33,7.49,7.66,7.82,7.98,8.14,8.29,8.41,8.54,8.66,8.79,8.91,9.04,9.17,9.3,9.43,9.56,9.69,9.82,9.95,10.1,10.2,10.3,10.5,10.6,10.7,10.9
|
| 163 |
+
Syria,4.45,4.55,4.65,4.75,4.85,4.95,5.06,5.16,5.27,5.38,5.49,5.6,5.71,5.82,5.94,6.05,6.17,6.28,6.4,6.52,6.64,6.76,6.88,7,7.12,7.24,7.36,7.48,7.6,7.72,7.84,7.97,8.09,8.22,8.35,8.48,8.61,8.74,8.87,9.01,9.14,9.28,9.41,9.55,9.69,9.83
|
| 164 |
+
Chad,1.75,1.8,1.85,1.89,1.94,1.99,2.04,2.09,2.15,2.2,2.26,2.31,2.37,2.43,2.49,2.55,2.61,2.68,2.74,2.81,2.88,2.95,3.02,3.09,3.17,3.24,3.32,3.4,3.48,3.56,3.64,3.73,3.81,3.9,3.99,4.08,4.17,4.27,4.36,4.46,4.56,4.66,4.76,4.86,4.97,5.08
|
| 165 |
+
Togo,2.89,2.96,3.03,3.1,3.18,3.26,3.33,3.41,3.5,3.58,3.66,3.75,3.84,3.93,4.02,4.11,4.21,4.31,4.41,4.51,4.61,4.71,4.82,4.93,5.04,5.15,5.27,5.39,5.51,5.63,5.75,5.88,6,6.13,6.26,6.39,6.51,6.65,6.78,6.91,7.04,7.17,7.31,7.44,7.58,7.71
|
| 166 |
+
Thailand,5.18,5.29,5.4,5.51,5.62,5.73,5.85,5.97,6.09,6.2,6.33,6.45,6.57,6.69,6.82,6.95,7.07,7.2,7.33,7.46,7.58,7.71,7.84,7.97,8.1,8.23,8.35,8.48,8.61,8.74,8.86,8.99,9.12,9.25,9.38,9.51,9.64,9.77,9.9,10,10.2,10.3,10.4,10.6,10.7,10.8
|
| 167 |
+
Tajikistan,6.91,7.04,7.16,7.29,7.41,7.53,7.66,7.78,7.91,8.03,8.15,8.27,8.39,8.51,8.62,8.74,8.85,8.96,9.07,9.17,9.28,9.38,9.47,9.57,9.66,9.75,9.83,9.91,10,10.1,10.2,10.3,10.4,10.5,10.6,10.7,10.8,10.9,11,11.1,11.2,11.3,11.4,11.6,11.7,11.8
|
| 168 |
+
Turkmenistan,6.97,7.1,7.22,7.35,7.48,7.61,7.74,7.88,8.01,8.14,8.28,8.41,8.55,8.68,8.82,8.96,9.09,9.23,9.37,9.51,9.65,9.79,9.93,10.1,10.2,10.3,10.5,10.6,10.8,10.9,11,11.2,11.3,11.5,11.6,11.7,11.9,12,12.1,12.3,12.4,12.5,12.7,12.8,12.9,13.1
|
| 169 |
+
Timor-Leste,3.49,3.57,3.66,3.74,3.83,3.91,4,4.09,4.18,4.27,4.37,4.46,4.56,4.66,4.76,4.86,4.97,5.07,5.18,5.29,5.4,5.51,5.62,5.74,5.85,5.97,6.1,6.23,6.35,6.48,6.61,6.74,6.87,7.01,7.14,7.27,7.41,7.55,7.68,7.82,7.96,8.1,8.24,8.38,8.52,8.66
|
| 170 |
+
Tonga,6.66,6.78,6.9,7.01,7.13,7.24,7.36,7.47,7.58,7.69,7.8,7.9,8.01,8.11,8.21,8.3,8.4,8.49,8.57,8.66,8.73,8.81,8.88,8.95,9.01,9.07,9.12,9.18,9.24,9.31,9.38,9.46,9.54,9.63,9.71,9.81,9.9,10,10.1,10.2,10.3,10.4,10.6,10.7,10.8,10.9
|
| 171 |
+
Trinidad and Tobago,7.04,7.18,7.32,7.46,7.6,7.74,7.88,8.02,8.16,8.31,8.45,8.59,8.74,8.88,9.03,9.17,9.31,9.46,9.6,9.74,9.88,10,10.2,10.3,10.4,10.6,10.7,10.8,10.9,11.1,11.2,11.3,11.4,11.6,11.7,11.8,12,12.1,12.2,12.3,12.5,12.6,12.7,12.8,13,13.1
|
| 172 |
+
Tunisia,5.39,5.52,5.64,5.77,5.9,6.03,6.16,6.29,6.43,6.57,6.7,6.84,6.99,7.13,7.27,7.41,7.56,7.7,7.85,8,8.14,8.29,8.43,8.57,8.72,8.86,8.98,9.1,9.22,9.34,9.46,9.58,9.71,9.83,9.95,10.1,10.2,10.3,10.4,10.6,10.7,10.8,11,11.1,11.2,11.3
|
| 173 |
+
Turkey,5.22,5.32,5.43,5.53,5.64,5.75,5.86,5.97,6.08,6.18,6.29,6.4,6.51,6.62,6.73,6.84,6.95,7.06,7.17,7.28,7.39,7.5,7.61,7.71,7.82,7.93,8.05,8.16,8.28,8.4,8.52,8.65,8.77,8.9,9.03,9.16,9.3,9.43,9.56,9.7,9.84,9.97,10.1,10.3,10.4,10.5
|
| 174 |
+
Taiwan,7.43,7.57,7.72,7.86,8,8.14,8.28,8.42,8.57,8.71,8.85,8.99,9.12,9.26,9.39,9.53,9.66,9.79,9.92,10,10.2,10.3,10.4,10.5,10.6,10.8,10.9,11,11.1,11.2,11.3,11.5,11.6,11.7,11.8,11.9,12.1,12.2,12.3,12.4,12.6,12.7,12.8,12.9,13.1,13.2
|
| 175 |
+
Tanzania,3.23,3.3,3.38,3.46,3.54,3.62,3.7,3.78,3.87,3.95,4.04,4.13,4.21,4.3,4.39,4.49,4.58,4.67,4.77,4.86,4.95,5.05,5.15,5.24,5.34,5.44,5.53,5.63,5.72,5.82,5.93,6.03,6.13,6.24,6.35,6.46,6.57,6.69,6.8,6.92,7.04,7.16,7.29,7.41,7.54,7.67
|
| 176 |
+
Uganda,3.18,3.25,3.33,3.4,3.48,3.56,3.64,3.73,3.81,3.9,3.98,4.07,4.16,4.25,4.34,4.43,4.53,4.62,4.72,4.81,4.91,5.01,5.11,5.21,5.31,5.42,5.52,5.62,5.73,5.83,5.94,6.05,6.16,6.28,6.39,6.51,6.63,6.75,6.87,6.99,7.11,7.24,7.36,7.49,7.62,7.75
|
| 177 |
+
Ukraine,6.88,7,7.12,7.24,7.36,7.48,7.6,7.73,7.85,7.97,8.1,8.23,8.35,8.48,8.61,8.74,8.86,8.99,9.13,9.26,9.39,9.52,9.66,9.8,9.94,10.1,10.2,10.4,10.5,10.7,10.9,11,11.2,11.3,11.5,11.7,11.8,12,12.1,12.3,12.4,12.6,12.8,12.9,13.1,13.2
|
| 178 |
+
Uruguay,6.21,6.31,6.42,6.53,6.63,6.74,6.84,6.94,7.05,7.15,7.25,7.34,7.44,7.53,7.62,7.71,7.8,7.88,7.96,8.04,8.11,8.18,8.25,8.31,8.37,8.42,8.49,8.56,8.63,8.71,8.8,8.89,8.98,9.08,9.17,9.28,9.38,9.49,9.6,9.71,9.82,9.94,10.1,10.2,10.3,10.4
|
| 179 |
+
USA,11.4,11.5,11.5,11.6,11.7,11.7,11.8,11.8,11.8,11.9,11.9,11.9,12,12,12,12,12,12,12.1,12.1,12.1,12.1,12.1,12,12,12,12,12.1,12.1,12.1,12.1,12.2,12.2,12.2,12.3,12.4,12.4,12.5,12.6,12.7,12.8,12.9,13,13.1,13.3,13.4
|
| 180 |
+
Uzbekistan,6.54,6.66,6.78,6.9,7.02,7.15,7.27,7.4,7.52,7.65,7.77,7.9,8.02,8.15,8.27,8.4,8.52,8.65,8.77,8.89,9.01,9.13,9.25,9.37,9.49,9.61,9.72,9.83,9.95,10.1,10.2,10.3,10.4,10.5,10.7,10.8,10.9,11,11.2,11.3,11.4,11.5,11.7,11.8,11.9,12.1
|
| 181 |
+
St. Vincent and the Grenadines,5.29,5.4,5.52,5.63,5.74,5.86,5.97,6.09,6.21,6.33,6.45,6.57,6.7,6.82,6.95,7.08,7.2,7.33,7.46,7.59,7.73,7.86,7.99,8.13,8.26,8.39,8.53,8.67,8.8,8.94,9.08,9.22,9.36,9.49,9.63,9.77,9.91,10.1,10.2,10.3,10.5,10.6,10.8,10.9,11,11.2
|
| 182 |
+
Venezuela,5,5.1,5.21,5.31,5.42,5.53,5.64,5.75,5.86,5.97,6.08,6.2,6.31,6.43,6.54,6.66,6.78,6.89,7.01,7.13,7.25,7.36,7.48,7.6,7.72,7.83,7.96,8.08,8.21,8.34,8.46,8.59,8.73,8.86,8.99,9.13,9.26,9.4,9.53,9.67,9.81,9.94,10.1,10.2,10.4,10.5
|
| 183 |
+
Vietnam,4.5,4.6,4.69,4.79,4.89,4.99,5.1,5.2,5.31,5.41,5.52,5.63,5.73,5.84,5.96,6.07,6.18,6.29,6.41,6.52,6.64,6.75,6.87,6.99,7.11,7.23,7.35,7.47,7.6,7.72,7.85,7.98,8.11,8.24,8.37,8.51,8.64,8.78,8.92,9.06,9.2,9.34,9.48,9.62,9.76,9.9
|
| 184 |
+
Vanuatu,4.12,4.21,4.3,4.39,4.49,4.58,4.68,4.78,4.88,4.98,5.08,5.18,5.28,5.39,5.49,5.6,5.71,5.82,5.93,6.04,6.15,6.26,6.37,6.49,6.6,6.71,6.83,6.95,7.07,7.19,7.31,7.43,7.56,7.68,7.81,7.94,8.07,8.2,8.33,8.46,8.6,8.73,8.87,9.01,9.15,9.29
|
| 185 |
+
Samoa,6.99,7.12,7.24,7.37,7.49,7.62,7.75,7.88,8,8.13,8.26,8.39,8.53,8.66,8.79,8.92,9.05,9.18,9.32,9.45,9.58,9.71,9.84,9.97,10.1,10.2,10.4,10.5,10.6,10.8,10.9,11,11.2,11.3,11.4,11.6,11.7,11.8,12,12.1,12.3,12.4,12.5,12.6,12.8,12.9
|
| 186 |
+
Yemen,2.56,2.63,2.7,2.78,2.85,2.93,3.01,3.09,3.17,3.26,3.35,3.44,3.54,3.63,3.73,3.83,3.94,4.05,4.16,4.28,4.4,4.52,4.65,4.79,4.92,5.07,5.22,5.38,5.54,5.69,5.85,6,6.16,6.31,6.47,6.62,6.77,6.92,7.07,7.22,7.37,7.52,7.67,7.82,7.97,8.11
|
| 187 |
+
South Africa,4.93,5.04,5.14,5.25,5.36,5.47,5.58,5.69,5.81,5.93,6.04,6.16,6.28,6.41,6.53,6.65,6.78,6.91,7.04,7.17,7.3,7.43,7.57,7.7,7.84,7.98,8.12,8.26,8.4,8.53,8.68,8.82,8.96,9.1,9.24,9.38,9.52,9.66,9.81,9.95,10.1,10.2,10.4,10.5,10.7,10.8
|
| 188 |
+
Zambia,3.78,3.87,3.95,4.03,4.11,4.19,4.28,4.36,4.45,4.53,4.62,4.71,4.79,4.88,4.97,5.06,5.15,5.24,5.33,5.42,5.51,5.6,5.69,5.78,5.87,5.96,6.06,6.16,6.26,6.37,6.47,6.58,6.69,6.8,6.92,7.03,7.15,7.27,7.39,7.52,7.64,7.77,7.9,8.03,8.16,8.29
|
| 189 |
+
Zimbabwe,5,5.11,5.22,5.33,5.43,5.55,5.66,5.77,5.89,6,6.12,6.24,6.36,6.48,6.6,6.72,6.84,6.96,7.08,7.21,7.33,7.46,7.58,7.7,7.83,7.95,8.07,8.19,8.31,8.44,8.56,8.69,8.81,8.94,9.07,9.2,9.33,9.46,9.59,9.73,9.86,10,10.1,10.3,10.4,10.5
|
mean_years_in_school_women_15_to_24_years.csv
ADDED
|
@@ -0,0 +1,189 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
country,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015
|
| 2 |
+
Afghanistan,0.48,0.5,0.51,0.53,0.55,0.57,0.59,0.61,0.63,0.65,0.67,0.69,0.72,0.74,0.77,0.79,0.82,0.85,0.88,0.91,0.94,0.97,1,1.04,1.07,1.11,1.15,1.19,1.23,1.27,1.32,1.36,1.41,1.45,1.5,1.55,1.6,1.66,1.71,1.77,1.82,1.88,1.94,2,2.07,2.13
|
| 3 |
+
Angola,1.64,1.69,1.74,1.8,1.85,1.91,1.97,2.03,2.1,2.16,2.23,2.3,2.37,2.44,2.52,2.59,2.67,2.75,2.84,2.92,3.01,3.1,3.19,3.29,3.38,3.48,3.59,3.7,3.81,3.92,4.04,4.15,4.27,4.39,4.52,4.64,4.77,4.9,5.03,5.16,5.3,5.43,5.57,5.71,5.85,6
|
| 4 |
+
Albania,4.99,5.11,5.24,5.36,5.49,5.62,5.75,5.88,6.02,6.15,6.29,6.43,6.57,6.71,6.85,6.99,7.13,7.28,7.42,7.57,7.72,7.87,8.02,8.17,8.32,8.47,8.62,8.77,8.93,9.08,9.24,9.4,9.56,9.71,9.88,10,10.2,10.4,10.5,10.7,10.9,11,11.2,11.4,11.5,11.7
|
| 5 |
+
Andorra,9.5,9.67,9.84,10,10.2,10.3,10.5,10.7,10.8,11,11.2,11.3,11.5,11.7,11.8,12,12.2,12.3,12.5,12.6,12.8,12.9,13.1,13.2,13.4,13.5,13.7,13.8,13.9,14.1,14.2,14.4,14.5,14.6,14.8,14.9,15,15.1,15.3,15.4,15.5,15.6,15.7,15.8,16,16.1
|
| 6 |
+
UAE,4.18,4.31,4.45,4.58,4.72,4.87,5.02,5.18,5.34,5.5,5.68,5.85,6.03,6.22,6.42,6.62,6.83,7.04,7.26,7.49,7.73,7.98,8.24,8.5,8.78,9.07,9.3,9.54,9.76,9.99,10.2,10.4,10.6,10.8,11,11.2,11.4,11.6,11.8,12,12.2,12.3,12.5,12.7,12.8,13
|
| 7 |
+
Argentina,6.64,6.78,6.92,7.06,7.2,7.34,7.48,7.62,7.76,7.9,8.04,8.18,8.32,8.46,8.59,8.73,8.86,9,9.13,9.25,9.38,9.51,9.63,9.74,9.86,9.97,10.1,10.2,10.4,10.5,10.6,10.8,10.9,11.1,11.2,11.3,11.5,11.6,11.8,11.9,12.1,12.2,12.4,12.5,12.7,12.8
|
| 8 |
+
Armenia,5.72,5.86,5.99,6.13,6.27,6.41,6.55,6.69,6.83,6.97,7.12,7.26,7.4,7.54,7.69,7.83,7.97,8.11,8.25,8.39,8.53,8.67,8.81,8.94,9.08,9.22,9.35,9.49,9.63,9.77,9.92,10.1,10.2,10.4,10.5,10.7,10.8,11,11.2,11.3,11.5,11.6,11.8,12,12.1,12.3
|
| 9 |
+
Antigua and Barbuda,7.95,8.11,8.28,8.44,8.6,8.77,8.94,9.1,9.27,9.44,9.6,9.77,9.94,10.1,10.3,10.4,10.6,10.8,10.9,11.1,11.3,11.4,11.6,11.8,11.9,12.1,12.2,12.4,12.6,12.7,12.9,13,13.2,13.3,13.5,13.6,13.8,13.9,14.1,14.2,14.3,14.5,14.6,14.7,14.8,15
|
| 10 |
+
Australia,8.91,9.07,9.23,9.39,9.54,9.7,9.86,10,10.2,10.3,10.5,10.6,10.8,10.9,11.1,11.2,11.3,11.5,11.6,11.8,11.9,12,12.2,12.3,12.4,12.5,12.6,12.8,12.9,13,13.1,13.3,13.4,13.5,13.7,13.8,13.9,14,14.2,14.3,14.4,14.6,14.7,14.8,14.9,15.1
|
| 11 |
+
Austria,6.54,6.67,6.81,6.93,7.06,7.19,7.32,7.45,7.58,7.7,7.83,7.95,8.07,8.19,8.31,8.43,8.55,8.66,8.78,8.89,8.99,9.1,9.2,9.3,9.4,9.49,9.61,9.73,9.86,9.99,10.1,10.3,10.4,10.6,10.7,10.8,11,11.1,11.3,11.4,11.6,11.8,11.9,12.1,12.2,12.4
|
| 12 |
+
Azerbaijan,6.06,6.2,6.34,6.49,6.63,6.78,6.92,7.07,7.22,7.37,7.52,7.67,7.82,7.97,8.12,8.26,8.41,8.56,8.71,8.86,9.01,9.15,9.3,9.44,9.58,9.72,9.86,9.99,10.1,10.3,10.4,10.5,10.7,10.8,11,11.1,11.3,11.4,11.6,11.7,11.8,12,12.2,12.3,12.4,12.6
|
| 13 |
+
Burundi,1.29,1.33,1.37,1.42,1.46,1.51,1.56,1.61,1.66,1.71,1.77,1.82,1.88,1.94,2,2.07,2.13,2.2,2.27,2.34,2.41,2.48,2.56,2.64,2.72,2.81,2.89,2.98,3.07,3.16,3.26,3.35,3.45,3.55,3.65,3.75,3.86,3.97,4.08,4.19,4.31,4.42,4.54,4.66,4.79,4.91
|
| 14 |
+
Belgium,8.35,8.49,8.63,8.77,8.91,9.05,9.18,9.32,9.45,9.58,9.71,9.84,9.96,10.1,10.2,10.3,10.4,10.6,10.7,10.8,10.9,11,11.1,11.2,11.2,11.3,11.4,11.5,11.7,11.8,11.9,12.1,12.2,12.3,12.5,12.6,12.8,12.9,13,13.2,13.3,13.4,13.6,13.7,13.9,14
|
| 15 |
+
Benin,1.08,1.12,1.16,1.19,1.23,1.27,1.31,1.36,1.4,1.45,1.49,1.54,1.59,1.64,1.69,1.75,1.8,1.86,1.92,1.98,2.04,2.1,2.17,2.23,2.3,2.37,2.45,2.53,2.61,2.7,2.78,2.87,2.96,3.06,3.15,3.25,3.35,3.45,3.55,3.66,3.76,3.87,3.98,4.09,4.21,4.32
|
| 16 |
+
Burkina Faso,0.58,0.6,0.62,0.64,0.66,0.69,0.71,0.74,0.76,0.79,0.82,0.85,0.88,0.91,0.94,0.98,1.01,1.05,1.09,1.13,1.17,1.21,1.26,1.3,1.35,1.4,1.45,1.51,1.56,1.62,1.68,1.74,1.8,1.86,1.93,2,2.06,2.13,2.2,2.28,2.35,2.42,2.5,2.58,2.66,2.74
|
| 17 |
+
Bangladesh,1.75,1.8,1.87,1.93,1.99,2.06,2.13,2.21,2.28,2.36,2.44,2.52,2.61,2.7,2.79,2.89,2.99,3.09,3.2,3.31,3.43,3.55,3.67,3.79,3.93,4.06,4.2,4.33,4.47,4.61,4.76,4.9,5.05,5.19,5.34,5.49,5.64,5.79,5.94,6.1,6.25,6.4,6.55,6.71,6.86,7.02
|
| 18 |
+
Bulgaria,7.94,8.06,8.17,8.29,8.39,8.5,8.6,8.7,8.79,8.88,8.97,9.05,9.12,9.19,9.26,9.31,9.37,9.41,9.45,9.49,9.51,9.53,9.55,9.56,9.56,9.57,9.62,9.69,9.76,9.84,9.93,10,10.1,10.2,10.3,10.4,10.6,10.7,10.8,10.9,11.1,11.2,11.4,11.5,11.7,11.8
|
| 19 |
+
Bahrain,4.61,4.74,4.87,5.01,5.15,5.29,5.43,5.58,5.73,5.88,6.03,6.18,6.34,6.49,6.65,6.81,6.97,7.13,7.29,7.45,7.61,7.77,7.92,8.08,8.24,8.39,8.52,8.64,8.77,8.9,9.03,9.17,9.3,9.43,9.57,9.71,9.85,9.99,10.1,10.3,10.4,10.6,10.7,10.9,11,11.2
|
| 20 |
+
Bahamas,6.54,6.68,6.84,6.99,7.14,7.3,7.45,7.61,7.77,7.93,8.09,8.25,8.42,8.58,8.74,8.91,9.07,9.24,9.41,9.57,9.74,9.91,10.1,10.2,10.4,10.6,10.7,10.9,11.1,11.2,11.4,11.6,11.7,11.9,12.1,12.2,12.4,12.5,12.7,12.8,13,13.2,13.3,13.4,13.6,13.8
|
| 21 |
+
Bosnia and Herzegovina,4.34,4.45,4.56,4.68,4.79,4.91,5.03,5.16,5.28,5.41,5.53,5.66,5.8,5.93,6.07,6.2,6.34,6.48,6.63,6.77,6.92,7.07,7.22,7.37,7.52,7.68,7.84,8.01,8.18,8.35,8.52,8.69,8.86,9.04,9.22,9.39,9.57,9.75,9.93,10.1,10.3,10.5,10.7,10.8,11,11.2
|
| 22 |
+
Belarus,6.03,6.16,6.3,6.43,6.57,6.71,6.85,6.99,7.13,7.28,7.42,7.56,7.71,7.85,8,8.14,8.29,8.43,8.58,8.73,8.87,9.02,9.17,9.32,9.47,9.62,9.79,9.95,10.1,10.3,10.5,10.6,10.8,11,11.2,11.3,11.5,11.7,11.9,12.1,12.3,12.4,12.6,12.8,12.9,13.1
|
| 23 |
+
Belize,4,4.1,4.21,4.33,4.44,4.56,4.67,4.79,4.92,5.04,5.17,5.3,5.43,5.56,5.69,5.83,5.96,6.1,6.24,6.38,6.53,6.67,6.82,6.97,7.12,7.27,7.41,7.56,7.71,7.86,8.02,8.17,8.33,8.48,8.64,8.8,8.96,9.13,9.29,9.45,9.62,9.78,9.95,10.1,10.3,10.4
|
| 24 |
+
Bolivia,4.05,4.16,4.28,4.39,4.51,4.62,4.74,4.87,4.99,5.12,5.25,5.38,5.51,5.65,5.78,5.92,6.06,6.2,6.35,6.49,6.64,6.79,6.93,7.09,7.24,7.39,7.54,7.7,7.85,8.01,8.17,8.33,8.49,8.65,8.82,8.98,9.15,9.32,9.48,9.65,9.82,9.99,10.2,10.3,10.5,10.7
|
| 25 |
+
Brazil,3.53,3.63,3.73,3.83,3.93,4.04,4.15,4.26,4.37,4.48,4.59,4.71,4.83,4.95,5.07,5.2,5.32,5.45,5.58,5.71,5.84,5.97,6.11,6.24,6.38,6.52,6.66,6.8,6.94,7.09,7.23,7.38,7.53,7.68,7.84,7.99,8.15,8.3,8.46,8.62,8.78,8.95,9.11,9.28,9.44,9.61
|
| 26 |
+
Barbados,5.47,5.6,5.74,5.88,6.02,6.16,6.31,6.45,6.6,6.75,6.9,7.05,7.21,7.36,7.52,7.68,7.84,8,8.16,8.32,8.48,8.65,8.81,8.98,9.14,9.31,9.48,9.64,9.81,9.98,10.1,10.3,10.5,10.7,10.8,11,11.2,11.3,11.5,11.6,11.8,12,12.1,12.3,12.4,12.6
|
| 27 |
+
Brunei,8.76,8.93,9.09,9.26,9.43,9.6,9.76,9.93,10.1,10.3,10.4,10.6,10.8,10.9,11.1,11.3,11.4,11.6,11.8,11.9,12.1,12.3,12.4,12.6,12.7,12.9,13,13.2,13.3,13.5,13.6,13.8,13.9,14.1,14.2,14.3,14.5,14.6,14.7,14.9,15,15.1,15.3,15.4,15.5,15.6
|
| 28 |
+
Bhutan,1.1,1.13,1.17,1.21,1.25,1.29,1.33,1.37,1.41,1.46,1.51,1.56,1.61,1.66,1.71,1.76,1.82,1.88,1.94,2,2.06,2.13,2.19,2.26,2.33,2.4,2.48,2.55,2.63,2.71,2.79,2.87,2.96,3.04,3.13,3.22,3.32,3.41,3.51,3.61,3.71,3.81,3.92,4.03,4.14,4.25
|
| 29 |
+
Botswana,3.16,3.26,3.37,3.49,3.6,3.72,3.85,3.98,4.11,4.25,4.39,4.54,4.69,4.84,5.01,5.17,5.34,5.52,5.71,5.89,6.09,6.29,6.49,6.7,6.92,7.13,7.29,7.45,7.62,7.78,7.94,8.11,8.27,8.44,8.61,8.77,8.94,9.11,9.28,9.45,9.61,9.78,9.95,10.1,10.3,10.5
|
| 30 |
+
Central African Republic,1.42,1.46,1.51,1.55,1.6,1.65,1.7,1.75,1.8,1.86,1.91,1.97,2.03,2.09,2.15,2.21,2.28,2.34,2.41,2.48,2.55,2.62,2.69,2.77,2.84,2.92,3,3.08,3.16,3.25,3.34,3.43,3.52,3.61,3.71,3.81,3.91,4.02,4.12,4.23,4.35,4.46,4.58,4.7,4.82,4.94
|
| 31 |
+
Canada,9.96,10.1,10.3,10.5,10.7,10.8,11,11.1,11.3,11.4,11.5,11.7,11.8,11.9,12,12.1,12.2,12.2,12.3,12.4,12.4,12.5,12.6,12.6,12.7,12.7,12.7,12.8,12.8,12.9,13,13.1,13.1,13.2,13.3,13.4,13.5,13.6,13.7,13.8,14,14.1,14.2,14.3,14.5,14.6
|
| 32 |
+
Switzerland,5.41,5.54,5.67,5.8,5.93,6.06,6.19,6.33,6.46,6.6,6.73,6.87,7.01,7.15,7.29,7.43,7.57,7.71,7.85,7.99,8.13,8.27,8.41,8.55,8.69,8.83,8.97,9.11,9.25,9.39,9.53,9.68,9.82,9.97,10.1,10.3,10.4,10.6,10.7,10.9,11.1,11.2,11.4,11.6,11.7,11.9
|
| 33 |
+
Chile,6.66,6.81,6.95,7.1,7.25,7.4,7.55,7.7,7.85,8,8.15,8.3,8.45,8.6,8.76,8.91,9.06,9.21,9.36,9.51,9.66,9.8,9.95,10.1,10.2,10.4,10.5,10.7,10.8,11,11.2,11.3,11.5,11.6,11.8,11.9,12.1,12.3,12.4,12.6,12.7,12.9,13,13.2,13.3,13.5
|
| 34 |
+
China,4.53,4.65,4.77,4.89,5.01,5.14,5.27,5.4,5.53,5.67,5.8,5.94,6.08,6.22,6.37,6.51,6.66,6.81,6.96,7.11,7.27,7.42,7.58,7.73,7.89,8.05,8.2,8.36,8.52,8.68,8.84,9,9.16,9.32,9.48,9.64,9.81,9.97,10.1,10.3,10.5,10.6,10.8,10.9,11.1,11.3
|
| 35 |
+
Cote d'Ivoire,1.34,1.38,1.43,1.47,1.52,1.57,1.62,1.67,1.72,1.77,1.83,1.88,1.94,2,2.06,2.12,2.18,2.25,2.31,2.38,2.45,2.52,2.59,2.66,2.74,2.81,2.89,2.97,3.05,3.13,3.22,3.3,3.39,3.48,3.57,3.67,3.77,3.86,3.97,4.07,4.18,4.29,4.4,4.51,4.63,4.75
|
| 36 |
+
Cameroon,2.72,2.8,2.89,2.98,3.07,3.16,3.26,3.35,3.45,3.55,3.65,3.75,3.86,3.96,4.07,4.18,4.29,4.4,4.51,4.62,4.73,4.85,4.96,5.08,5.2,5.32,5.43,5.55,5.67,5.79,5.92,6.04,6.16,6.29,6.42,6.55,6.68,6.82,6.95,7.09,7.23,7.37,7.52,7.66,7.81,7.96
|
| 37 |
+
"Congo, Dem. Rep.",1.95,2.01,2.07,2.13,2.2,2.26,2.33,2.4,2.47,2.54,2.62,2.69,2.77,2.85,2.94,3.02,3.11,3.19,3.28,3.38,3.47,3.57,3.66,3.77,3.87,3.97,4.08,4.19,4.3,4.42,4.54,4.66,4.78,4.9,5.03,5.16,5.29,5.43,5.56,5.7,5.84,5.99,6.13,6.28,6.43,6.58
|
| 38 |
+
"Congo, Rep.",3.04,3.13,3.22,3.31,3.4,3.5,3.59,3.69,3.79,3.9,4,4.11,4.21,4.32,4.43,4.55,4.66,4.78,4.89,5.01,5.13,5.25,5.37,5.5,5.62,5.75,5.88,6.01,6.14,6.27,6.41,6.55,6.69,6.83,6.98,7.13,7.28,7.43,7.58,7.73,7.89,8.05,8.21,8.37,8.53,8.7
|
| 39 |
+
Colombia,4.38,4.49,4.61,4.73,4.86,4.98,5.11,5.24,5.37,5.5,5.64,5.77,5.91,6.05,6.2,6.34,6.49,6.63,6.78,6.93,7.08,7.24,7.39,7.55,7.7,7.86,8.02,8.18,8.34,8.5,8.66,8.83,8.99,9.16,9.32,9.49,9.66,9.82,9.99,10.2,10.3,10.5,10.7,10.8,11,11.2
|
| 40 |
+
Comoros,1.96,2.02,2.08,2.14,2.21,2.28,2.35,2.42,2.5,2.57,2.65,2.73,2.82,2.9,2.99,3.08,3.18,3.27,3.37,3.48,3.58,3.69,3.8,3.91,4.03,4.15,4.28,4.42,4.55,4.69,4.83,4.98,5.13,5.27,5.43,5.58,5.73,5.89,6.05,6.21,6.37,6.53,6.7,6.86,7.02,7.19
|
| 41 |
+
Cape Verde,2.73,2.81,2.9,2.98,3.07,3.16,3.26,3.35,3.45,3.55,3.65,3.76,3.87,3.98,4.09,4.2,4.32,4.44,4.56,4.68,4.8,4.93,5.06,5.19,5.32,5.46,5.59,5.73,5.87,6.01,6.15,6.3,6.44,6.59,6.74,6.89,7.04,7.19,7.35,7.5,7.66,7.81,7.97,8.13,8.29,8.45
|
| 42 |
+
Costa Rica,5.26,5.38,5.51,5.63,5.76,5.88,6.01,6.13,6.26,6.39,6.51,6.64,6.76,6.89,7.01,7.13,7.26,7.37,7.49,7.61,7.72,7.83,7.93,8.03,8.13,8.22,8.34,8.46,8.58,8.71,8.84,8.98,9.11,9.25,9.4,9.54,9.69,9.83,9.98,10.1,10.3,10.4,10.6,10.8,10.9,11.1
|
| 43 |
+
Cuba,6.47,6.62,6.77,6.92,7.07,7.23,7.39,7.54,7.7,7.86,8.02,8.18,8.33,8.49,8.65,8.81,8.97,9.12,9.28,9.43,9.58,9.73,9.88,10,10.2,10.3,10.5,10.6,10.8,10.9,11.1,11.2,11.3,11.5,11.7,11.8,11.9,12.1,12.3,12.4,12.6,12.7,12.9,13,13.2,13.3
|
| 44 |
+
Cyprus,7.69,7.85,8.01,8.17,8.33,8.49,8.66,8.82,8.98,9.15,9.31,9.48,9.64,9.8,9.96,10.1,10.3,10.4,10.6,10.8,10.9,11.1,11.2,11.3,11.5,11.6,11.7,11.9,12,12.1,12.2,12.4,12.5,12.6,12.8,12.9,13,13.2,13.3,13.4,13.6,13.7,13.8,13.9,14.1,14.2
|
| 45 |
+
Czech Republic,6.88,7.03,7.18,7.33,7.48,7.63,7.78,7.94,8.09,8.24,8.39,8.54,8.69,8.84,8.99,9.13,9.28,9.42,9.56,9.7,9.83,9.96,10.1,10.2,10.3,10.5,10.6,10.7,10.8,10.9,11,11.1,11.2,11.4,11.5,11.6,11.7,11.8,12,12.1,12.3,12.4,12.5,12.7,12.8,13
|
| 46 |
+
Germany,7.06,7.21,7.36,7.51,7.66,7.81,7.96,8.11,8.26,8.41,8.56,8.7,8.85,8.99,9.14,9.28,9.42,9.56,9.7,9.84,9.97,10.1,10.2,10.4,10.5,10.6,10.7,10.9,11,11.1,11.3,11.4,11.5,11.7,11.8,12,12.1,12.3,12.4,12.6,12.7,12.9,13,13.2,13.3,13.4
|
| 47 |
+
Djibouti,1.57,1.62,1.68,1.73,1.79,1.85,1.91,1.97,2.03,2.1,2.17,2.24,2.31,2.38,2.46,2.54,2.62,2.7,2.79,2.88,2.97,3.06,3.15,3.25,3.35,3.46,3.57,3.68,3.79,3.91,4.02,4.14,4.27,4.39,4.51,4.64,4.77,4.9,5.03,5.16,5.29,5.43,5.56,5.7,5.84,5.98
|
| 48 |
+
Dominica,6.51,6.66,6.81,6.96,7.12,7.27,7.43,7.59,7.75,7.91,8.07,8.23,8.39,8.56,8.72,8.89,9.06,9.22,9.39,9.56,9.72,9.89,10.1,10.2,10.4,10.6,10.7,10.9,11.1,11.2,11.4,11.6,11.7,11.9,12,12.2,12.4,12.5,12.7,12.8,13,13.1,13.3,13.4,13.6,13.7
|
| 49 |
+
Denmark,7.01,7.16,7.31,7.46,7.61,7.76,7.91,8.06,8.21,8.36,8.51,8.66,8.81,8.96,9.11,9.26,9.41,9.55,9.7,9.84,9.99,10.1,10.3,10.4,10.5,10.7,10.8,10.9,11.1,11.2,11.4,11.5,11.6,11.8,11.9,12.1,12.2,12.4,12.5,12.7,12.8,13,13.1,13.3,13.4,13.6
|
| 50 |
+
Dominican Republic,4.58,4.7,4.83,4.95,5.08,5.2,5.33,5.46,5.59,5.73,5.86,6,6.14,6.28,6.42,6.56,6.7,6.84,6.99,7.13,7.28,7.42,7.57,7.71,7.86,8.01,8.15,8.3,8.45,8.6,8.75,8.91,9.07,9.22,9.38,9.54,9.71,9.87,10,10.2,10.4,10.5,10.7,10.9,11,11.2
|
| 51 |
+
Algeria,3.61,3.71,3.82,3.93,4.04,4.15,4.27,4.39,4.51,4.64,4.76,4.89,5.02,5.16,5.3,5.44,5.58,5.73,5.87,6.02,6.18,6.33,6.49,6.65,6.81,6.98,7.14,7.3,7.46,7.62,7.78,7.95,8.11,8.28,8.44,8.61,8.78,8.94,9.11,9.28,9.45,9.62,9.78,9.95,10.1,10.3
|
| 52 |
+
Ecuador,4.83,4.96,5.08,5.21,5.33,5.46,5.59,5.72,5.85,5.98,6.11,6.25,6.38,6.51,6.64,6.77,6.91,7.04,7.17,7.3,7.43,7.56,7.68,7.81,7.94,8.07,8.2,8.33,8.46,8.6,8.74,8.88,9.02,9.17,9.31,9.47,9.62,9.77,9.93,10.1,10.3,10.4,10.6,10.7,10.9,11.1
|
| 53 |
+
Egypt,3.04,3.13,3.24,3.34,3.45,3.56,3.67,3.79,3.92,4.04,4.17,4.31,4.44,4.58,4.73,4.88,5.03,5.19,5.35,5.52,5.69,5.86,6.04,6.22,6.4,6.59,6.76,6.93,7.1,7.27,7.44,7.61,7.78,7.95,8.11,8.28,8.45,8.62,8.79,8.96,9.12,9.29,9.46,9.63,9.79,9.96
|
| 54 |
+
Eritrea,1.6,1.65,1.7,1.76,1.81,1.87,1.93,1.99,2.05,2.12,2.18,2.25,2.32,2.39,2.47,2.54,2.62,2.7,2.78,2.87,2.95,3.04,3.13,3.23,3.32,3.42,3.52,3.62,3.73,3.84,3.95,4.06,4.17,4.29,4.4,4.52,4.64,4.77,4.89,5.02,5.15,5.28,5.41,5.55,5.68,5.82
|
| 55 |
+
Spain,6.37,6.52,6.66,6.81,6.96,7.11,7.26,7.42,7.57,7.73,7.88,8.04,8.2,8.36,8.52,8.68,8.84,9,9.17,9.33,9.49,9.65,9.81,9.98,10.1,10.3,10.4,10.6,10.8,10.9,11.1,11.3,11.4,11.6,11.7,11.9,12.1,12.2,12.4,12.5,12.7,12.8,13,13.1,13.3,13.4
|
| 56 |
+
Estonia,5.33,5.45,5.58,5.7,5.83,5.96,6.09,6.21,6.34,6.47,6.6,6.73,6.86,6.99,7.12,7.24,7.37,7.5,7.62,7.74,7.87,7.99,8.11,8.23,8.35,8.47,8.59,8.72,8.85,8.99,9.13,9.27,9.41,9.56,9.72,9.87,10,10.2,10.4,10.5,10.7,10.9,11,11.2,11.4,11.6
|
| 57 |
+
Ethiopia,1.47,1.52,1.58,1.64,1.7,1.76,1.83,1.89,1.96,2.03,2.11,2.18,2.26,2.34,2.43,2.51,2.6,2.7,2.79,2.89,2.99,3.09,3.19,3.3,3.4,3.51,3.63,3.74,3.85,3.97,4.08,4.2,4.31,4.43,4.54,4.66,4.77,4.88,4.99,5.11,5.22,5.33,5.44,5.56,5.67,5.79
|
| 58 |
+
Finland,6.53,6.68,6.82,6.96,7.11,7.25,7.4,7.55,7.7,7.84,7.99,8.14,8.29,8.44,8.59,8.74,8.9,9.05,9.2,9.35,9.5,9.65,9.8,9.94,10.1,10.2,10.4,10.5,10.7,10.8,11,11.2,11.3,11.5,11.6,11.8,11.9,12.1,12.2,12.4,12.6,12.7,12.9,13,13.2,13.3
|
| 59 |
+
Fiji,6.27,6.4,6.54,6.67,6.81,6.94,7.08,7.21,7.35,7.48,7.62,7.75,7.89,8.02,8.15,8.28,8.41,8.54,8.67,8.79,8.92,9.04,9.15,9.27,9.38,9.49,9.63,9.77,9.92,10.1,10.2,10.4,10.5,10.7,10.8,11,11.1,11.3,11.4,11.6,11.7,11.9,12.1,12.2,12.4,12.5
|
| 60 |
+
France,7.64,7.78,7.92,8.05,8.19,8.32,8.45,8.58,8.71,8.84,8.97,9.09,9.21,9.34,9.45,9.57,9.69,9.8,9.91,10,10.1,10.2,10.3,10.4,10.5,10.6,10.7,10.8,10.9,11.1,11.2,11.3,11.5,11.6,11.7,11.9,12,12.2,12.3,12.5,12.6,12.8,12.9,13.1,13.2,13.3
|
| 61 |
+
"Micronesia, Fed. Sts.",6.85,7,7.15,7.3,7.46,7.61,7.77,7.93,8.09,8.25,8.41,8.57,8.73,8.89,9.05,9.22,9.38,9.54,9.7,9.87,10,10.2,10.3,10.5,10.7,10.8,11,11.2,11.3,11.5,11.6,11.8,11.9,12.1,12.3,12.4,12.6,12.7,12.9,13,13.2,13.3,13.5,13.6,13.8,13.9
|
| 62 |
+
Gabon,4.46,4.58,4.7,4.83,4.95,5.08,5.21,5.33,5.46,5.6,5.73,5.86,5.99,6.12,6.26,6.39,6.52,6.65,6.78,6.91,7.03,7.15,7.27,7.39,7.51,7.62,7.71,7.81,7.9,8.01,8.11,8.22,8.33,8.44,8.55,8.67,8.79,8.91,9.04,9.17,9.3,9.43,9.57,9.71,9.85,10
|
| 63 |
+
UK,7.71,7.86,8.02,8.18,8.34,8.5,8.66,8.82,8.98,9.15,9.31,9.47,9.63,9.79,9.95,10.1,10.3,10.4,10.6,10.8,10.9,11.1,11.2,11.4,11.5,11.7,11.8,12,12.1,12.3,12.4,12.5,12.7,12.8,13,13.1,13.3,13.4,13.6,13.7,13.8,14,14.1,14.3,14.4,14.5
|
| 64 |
+
Georgia,6.52,6.66,6.81,6.96,7.11,7.26,7.41,7.56,7.71,7.87,8.02,8.18,8.33,8.49,8.65,8.81,8.96,9.12,9.28,9.44,9.6,9.75,9.91,10.1,10.2,10.4,10.5,10.7,10.8,11,11.2,11.3,11.5,11.6,11.8,11.9,12.1,12.3,12.4,12.6,12.7,12.9,13,13.2,13.3,13.5
|
| 65 |
+
Ghana,3.22,3.31,3.41,3.51,3.61,3.71,3.81,3.92,4.02,4.12,4.22,4.33,4.43,4.53,4.63,4.73,4.82,4.92,5.02,5.11,5.21,5.3,5.4,5.49,5.58,5.67,5.77,5.87,5.97,6.07,6.17,6.28,6.39,6.5,6.62,6.74,6.86,6.98,7.11,7.24,7.38,7.51,7.65,7.79,7.94,8.08
|
| 66 |
+
Guinea,0.77,0.8,0.82,0.85,0.88,0.91,0.94,0.97,1,1.04,1.07,1.11,1.14,1.18,1.22,1.26,1.3,1.34,1.39,1.43,1.48,1.53,1.58,1.63,1.69,1.74,1.81,1.87,1.94,2,2.07,2.14,2.22,2.29,2.37,2.45,2.53,2.61,2.69,2.78,2.87,2.96,3.05,3.14,3.23,3.33
|
| 67 |
+
Gambia,1.41,1.45,1.5,1.55,1.6,1.65,1.71,1.76,1.82,1.88,1.94,2,2.06,2.12,2.19,2.26,2.33,2.4,2.48,2.55,2.63,2.71,2.79,2.88,2.96,3.05,3.14,3.23,3.33,3.42,3.52,3.62,3.73,3.83,3.94,4.05,4.16,4.27,4.38,4.5,4.62,4.74,4.86,4.98,5.11,5.24
|
| 68 |
+
Guinea-Bissau,0.75,0.78,0.81,0.83,0.86,0.89,0.92,0.95,0.99,1.02,1.06,1.09,1.13,1.17,1.21,1.25,1.29,1.34,1.38,1.43,1.48,1.53,1.58,1.64,1.69,1.75,1.82,1.88,1.95,2.01,2.08,2.15,2.22,2.29,2.37,2.45,2.52,2.6,2.69,2.77,2.85,2.94,3.03,3.12,3.21,3.31
|
| 69 |
+
Equatorial Guinea,2.47,2.55,2.62,2.7,2.78,2.86,2.94,3.03,3.12,3.21,3.3,3.39,3.49,3.59,3.69,3.79,3.89,4,4.11,4.22,4.33,4.44,4.56,4.68,4.8,4.93,5.05,5.18,5.31,5.44,5.58,5.71,5.85,5.99,6.14,6.28,6.43,6.58,6.73,6.88,7.03,7.19,7.34,7.5,7.66,7.82
|
| 70 |
+
Greece,6.84,7,7.15,7.3,7.46,7.62,7.77,7.93,8.09,8.25,8.41,8.57,8.72,8.88,9.04,9.2,9.36,9.52,9.67,9.83,9.98,10.1,10.3,10.4,10.6,10.7,10.9,11,11.2,11.3,11.5,11.6,11.8,11.9,12.1,12.2,12.4,12.5,12.7,12.8,13,13.2,13.3,13.4,13.6,13.7
|
| 71 |
+
Grenada,5.47,5.6,5.74,5.88,6.02,6.16,6.31,6.45,6.6,6.75,6.9,7.05,7.21,7.36,7.52,7.68,7.84,8,8.16,8.32,8.48,8.65,8.81,8.98,9.14,9.31,9.48,9.64,9.81,9.98,10.1,10.3,10.5,10.7,10.8,11,11.2,11.3,11.5,11.6,11.8,12,12.1,12.3,12.4,12.6
|
| 72 |
+
Guatemala,2.43,2.5,2.58,2.65,2.73,2.81,2.89,2.97,3.06,3.14,3.23,3.32,3.42,3.51,3.61,3.7,3.8,3.91,4.01,4.12,4.22,4.33,4.44,4.56,4.67,4.79,4.91,5.03,5.15,5.28,5.41,5.54,5.67,5.81,5.95,6.09,6.23,6.37,6.52,6.67,6.82,6.97,7.12,7.28,7.44,7.6
|
| 73 |
+
Guyana,5.66,5.78,5.91,6.03,6.16,6.28,6.41,6.53,6.66,6.78,6.9,7.03,7.15,7.27,7.39,7.51,7.63,7.75,7.86,7.97,8.09,8.2,8.3,8.41,8.51,8.62,8.73,8.86,8.98,9.11,9.25,9.38,9.52,9.66,9.81,9.95,10.1,10.3,10.4,10.6,10.7,10.9,11,11.2,11.3,11.5
|
| 74 |
+
Honduras,3.2,3.29,3.38,3.48,3.58,3.68,3.79,3.89,4,4.11,4.22,4.34,4.46,4.57,4.7,4.82,4.94,5.07,5.2,5.33,5.46,5.6,5.73,5.87,6,6.14,6.28,6.42,6.56,6.71,6.86,7.01,7.16,7.31,7.47,7.62,7.78,7.94,8.1,8.27,8.43,8.6,8.76,8.93,9.1,9.27
|
| 75 |
+
Croatia,4.73,4.85,4.97,5.09,5.21,5.33,5.45,5.58,5.71,5.84,5.97,6.1,6.23,6.36,6.49,6.63,6.76,6.9,7.04,7.17,7.31,7.45,7.59,7.73,7.86,8,8.14,8.28,8.43,8.57,8.72,8.87,9.02,9.17,9.33,9.49,9.65,9.81,9.97,10.1,10.3,10.5,10.6,10.8,11,11.1
|
| 76 |
+
Haiti,2.39,2.46,2.54,2.61,2.69,2.78,2.86,2.95,3.03,3.13,3.22,3.31,3.41,3.51,3.61,3.72,3.82,3.93,4.05,4.16,4.28,4.4,4.52,4.65,4.77,4.9,5.03,5.15,5.28,5.41,5.54,5.68,5.81,5.95,6.09,6.23,6.38,6.52,6.67,6.82,6.98,7.13,7.29,7.45,7.61,7.77
|
| 77 |
+
Hungary,8.02,8.15,8.28,8.4,8.52,8.64,8.76,8.88,8.99,9.1,9.21,9.32,9.42,9.52,9.62,9.71,9.81,9.89,9.98,10.1,10.1,10.2,10.3,10.4,10.4,10.5,10.6,10.7,10.9,11,11.1,11.2,11.4,11.5,11.7,11.8,11.9,12.1,12.2,12.4,12.5,12.7,12.8,13,13.1,13.3
|
| 78 |
+
Indonesia,3.67,3.78,3.89,4,4.12,4.23,4.35,4.48,4.6,4.73,4.86,5,5.13,5.27,5.41,5.56,5.71,5.85,6.01,6.16,6.31,6.47,6.63,6.79,6.95,7.12,7.27,7.43,7.59,7.75,7.91,8.07,8.23,8.4,8.56,8.72,8.89,9.05,9.22,9.39,9.55,9.72,9.89,10.1,10.2,10.4
|
| 79 |
+
India,1.88,1.95,2.01,2.09,2.16,2.23,2.31,2.39,2.48,2.56,2.65,2.75,2.84,2.94,3.04,3.15,3.26,3.37,3.49,3.61,3.73,3.86,3.99,4.12,4.26,4.4,4.53,4.67,4.8,4.94,5.08,5.22,5.37,5.51,5.65,5.8,5.95,6.1,6.24,6.39,6.54,6.69,6.85,7,7.15,7.3
|
| 80 |
+
Ireland,7.36,7.52,7.69,7.86,8.03,8.2,8.37,8.54,8.72,8.89,9.07,9.25,9.42,9.6,9.78,9.95,10.1,10.3,10.5,10.7,10.8,11,11.2,11.3,11.5,11.7,11.8,12,12.1,12.3,12.4,12.6,12.7,12.9,13,13.2,13.3,13.5,13.6,13.8,13.9,14,14.2,14.3,14.4,14.6
|
| 81 |
+
Iran,2.88,3,3.12,3.25,3.39,3.53,3.68,3.84,4.01,4.18,4.37,4.56,4.76,4.97,5.19,5.42,5.66,5.91,6.17,6.44,6.71,6.98,7.26,7.54,7.82,8.08,8.3,8.51,8.71,8.92,9.12,9.32,9.52,9.72,9.91,10.1,10.3,10.5,10.7,10.8,11,11.2,11.4,11.5,11.7,11.9
|
| 82 |
+
Iraq,2.29,2.36,2.44,2.52,2.6,2.68,2.77,2.85,2.94,3.04,3.13,3.23,3.33,3.43,3.54,3.64,3.75,3.87,3.98,4.1,4.22,4.34,4.47,4.59,4.72,4.85,4.98,5.1,5.23,5.36,5.49,5.63,5.76,5.9,6.04,6.18,6.33,6.48,6.63,6.78,6.93,7.09,7.25,7.41,7.57,7.73
|
| 83 |
+
Iceland,5.45,5.58,5.7,5.84,5.97,6.1,6.24,6.37,6.51,6.65,6.79,6.93,7.07,7.21,7.35,7.5,7.64,7.78,7.93,8.08,8.22,8.37,8.51,8.66,8.81,8.95,9.1,9.24,9.39,9.53,9.68,9.83,9.98,10.1,10.3,10.4,10.6,10.7,10.9,11.1,11.2,11.4,11.5,11.7,11.8,12
|
| 84 |
+
Israel,9.51,9.65,9.8,9.94,10.1,10.2,10.4,10.5,10.6,10.8,10.9,11,11.2,11.3,11.4,11.5,11.6,11.8,11.9,12,12.1,12.2,12.3,12.4,12.5,12.6,12.7,12.8,13,13.1,13.2,13.3,13.5,13.6,13.7,13.9,14,14.1,14.3,14.4,14.5,14.6,14.8,14.9,15,15.1
|
| 85 |
+
Italy,8.51,8.65,8.79,8.93,9.07,9.2,9.34,9.47,9.6,9.72,9.85,9.97,10.1,10.2,10.3,10.4,10.5,10.6,10.8,10.8,10.9,11,11.1,11.2,11.3,11.4,11.5,11.6,11.7,11.8,12,12.1,12.2,12.3,12.5,12.6,12.7,12.9,13,13.2,13.3,13.4,13.6,13.7,13.8,14
|
| 86 |
+
Jamaica,6.39,6.53,6.68,6.83,6.97,7.13,7.28,7.43,7.59,7.74,7.9,8.06,8.21,8.37,8.53,8.69,8.85,9.01,9.17,9.33,9.49,9.65,9.8,9.96,10.1,10.3,10.4,10.6,10.7,10.9,11,11.2,11.3,11.5,11.7,11.8,12,12.1,12.3,12.4,12.6,12.7,12.9,13,13.2,13.3
|
| 87 |
+
Jordan,4.96,5.12,5.28,5.45,5.62,5.79,5.97,6.15,6.34,6.53,6.72,6.92,7.11,7.31,7.52,7.72,7.93,8.13,8.34,8.54,8.75,8.95,9.15,9.35,9.54,9.73,9.89,10.1,10.2,10.4,10.5,10.7,10.8,11,11.1,11.3,11.4,11.6,11.7,11.9,12,12.2,12.3,12.5,12.6,12.8
|
| 88 |
+
Japan,9.12,9.27,9.42,9.57,9.72,9.87,10,10.2,10.3,10.5,10.6,10.8,10.9,11.1,11.2,11.3,11.5,11.6,11.8,11.9,12,12.2,12.3,12.4,12.6,12.7,12.8,13,13.2,13.3,13.4,13.6,13.7,13.9,14,14.2,14.3,14.4,14.6,14.7,14.8,14.9,15.1,15.2,15.3,15.4
|
| 89 |
+
Kazakhstan,6.35,6.5,6.64,6.79,6.94,7.08,7.23,7.39,7.54,7.69,7.84,8,8.15,8.3,8.46,8.61,8.76,8.92,9.07,9.22,9.38,9.53,9.68,9.83,9.97,10.1,10.3,10.4,10.6,10.7,10.8,11,11.1,11.3,11.4,11.6,11.7,11.9,12,12.2,12.3,12.5,12.6,12.8,12.9,13.1
|
| 90 |
+
Kenya,3.26,3.37,3.48,3.6,3.72,3.84,3.96,4.09,4.21,4.34,4.47,4.61,4.74,4.88,5.02,5.16,5.3,5.44,5.58,5.73,5.87,6.02,6.16,6.31,6.45,6.59,6.71,6.83,6.95,7.07,7.19,7.32,7.44,7.57,7.7,7.83,7.96,8.09,8.23,8.37,8.51,8.66,8.8,8.95,9.1,9.26
|
| 91 |
+
Kyrgyz Republic,6.63,6.78,6.92,7.07,7.22,7.37,7.52,7.68,7.83,7.98,8.14,8.29,8.44,8.59,8.75,8.9,9.05,9.2,9.35,9.49,9.64,9.78,9.93,10.1,10.2,10.3,10.5,10.6,10.7,10.8,11,11.1,11.2,11.3,11.5,11.6,11.7,11.9,12,12.1,12.3,12.4,12.6,12.7,12.8,13
|
| 92 |
+
Cambodia,2.05,2.12,2.18,2.24,2.31,2.38,2.45,2.52,2.6,2.67,2.75,2.83,2.91,3,3.08,3.17,3.26,3.35,3.45,3.55,3.65,3.75,3.85,3.96,4.07,4.18,4.3,4.42,4.55,4.67,4.8,4.93,5.06,5.2,5.33,5.47,5.62,5.76,5.91,6.05,6.2,6.36,6.51,6.67,6.82,6.98
|
| 93 |
+
Kiribati,5.19,5.31,5.43,5.55,5.68,5.8,5.93,6.05,6.18,6.31,6.43,6.56,6.68,6.81,6.93,7.05,7.18,7.3,7.41,7.53,7.64,7.76,7.86,7.97,8.07,8.16,8.27,8.37,8.49,8.61,8.73,8.85,8.98,9.12,9.25,9.39,9.53,9.67,9.82,9.97,10.1,10.3,10.4,10.6,10.7,10.9
|
| 94 |
+
South Korea,7.64,7.8,7.95,8.11,8.27,8.42,8.58,8.74,8.9,9.06,9.22,9.38,9.55,9.71,9.87,10,10.2,10.3,10.5,10.7,10.8,11,11.1,11.3,11.5,11.6,11.8,11.9,12.1,12.2,12.4,12.5,12.7,12.8,12.9,13.1,13.2,13.4,13.5,13.7,13.8,13.9,14.1,14.2,14.3,14.5
|
| 95 |
+
Kuwait,4.82,4.96,5.1,5.24,5.38,5.53,5.68,5.84,5.99,6.15,6.32,6.48,6.65,6.82,6.99,7.16,7.34,7.52,7.7,7.88,8.07,8.25,8.44,8.64,8.83,9.03,9.22,9.4,9.58,9.76,9.94,10.1,10.3,10.5,10.6,10.8,11,11.2,11.3,11.5,11.7,11.8,12,12.2,12.3,12.5
|
| 96 |
+
Lao,1.99,2.06,2.12,2.18,2.25,2.32,2.39,2.46,2.54,2.61,2.69,2.77,2.85,2.94,3.03,3.12,3.21,3.3,3.4,3.5,3.6,3.7,3.81,3.92,4.04,4.15,4.27,4.4,4.53,4.66,4.79,4.92,5.06,5.19,5.33,5.47,5.62,5.76,5.91,6.06,6.21,6.36,6.51,6.67,6.82,6.98
|
| 97 |
+
Lebanon,4.52,4.64,4.77,4.89,5.02,5.15,5.28,5.42,5.56,5.7,5.84,5.98,6.13,6.28,6.43,6.58,6.74,6.9,7.06,7.22,7.38,7.55,7.72,7.89,8.06,8.23,8.41,8.59,8.76,8.94,9.12,9.3,9.47,9.65,9.83,10,10.2,10.3,10.5,10.7,10.9,11.1,11.2,11.4,11.6,11.7
|
| 98 |
+
Liberia,0.99,1.03,1.07,1.11,1.15,1.2,1.25,1.3,1.35,1.41,1.47,1.53,1.59,1.66,1.73,1.81,1.89,1.97,2.06,2.16,2.26,2.36,2.47,2.59,2.7,2.83,2.93,3.03,3.13,3.23,3.34,3.44,3.55,3.66,3.77,3.89,4,4.12,4.24,4.36,4.48,4.6,4.73,4.86,4.98,5.12
|
| 99 |
+
Libya,2.38,2.45,2.53,2.6,2.68,2.76,2.84,2.93,3.02,3.1,3.19,3.29,3.38,3.48,3.58,3.68,3.78,3.89,4,4.11,4.22,4.34,4.45,4.57,4.7,4.82,4.95,5.08,5.21,5.34,5.47,5.61,5.75,5.89,6.03,6.17,6.32,6.46,6.61,6.76,6.92,7.07,7.23,7.38,7.54,7.7
|
| 100 |
+
St. Lucia,5.42,5.55,5.68,5.82,5.96,6.1,6.24,6.38,6.53,6.67,6.82,6.97,7.12,7.27,7.42,7.57,7.73,7.88,8.03,8.19,8.34,8.5,8.66,8.81,8.97,9.13,9.28,9.44,9.6,9.76,9.93,10.1,10.3,10.4,10.6,10.7,10.9,11.1,11.2,11.4,11.6,11.7,11.9,12,12.2,12.4
|
| 101 |
+
Sri Lanka,5.6,5.73,5.85,5.98,6.11,6.24,6.37,6.5,6.63,6.76,6.9,7.03,7.17,7.3,7.44,7.58,7.72,7.85,7.99,8.13,8.26,8.4,8.54,8.67,8.81,8.95,9.11,9.27,9.43,9.59,9.76,9.92,10.1,10.3,10.4,10.6,10.8,10.9,11.1,11.2,11.4,11.6,11.7,11.9,12.1,12.2
|
| 102 |
+
Lesotho,4.52,4.62,4.73,4.84,4.95,5.07,5.18,5.29,5.41,5.52,5.64,5.75,5.87,5.98,6.1,6.22,6.33,6.45,6.56,6.68,6.79,6.91,7.02,7.13,7.24,7.35,7.49,7.63,7.78,7.92,8.07,8.22,8.38,8.53,8.69,8.85,9.01,9.17,9.34,9.5,9.66,9.83,10,10.2,10.3,10.5
|
| 103 |
+
Lithuania,6.23,6.37,6.51,6.65,6.79,6.93,7.07,7.22,7.36,7.5,7.64,7.78,7.92,8.06,8.2,8.34,8.48,8.61,8.75,8.88,9.01,9.14,9.26,9.39,9.51,9.63,9.73,9.84,9.95,10.1,10.2,10.3,10.4,10.5,10.7,10.8,10.9,11,11.2,11.3,11.4,11.6,11.7,11.9,12,12.2
|
| 104 |
+
Luxembourg,5.74,5.87,6.01,6.15,6.28,6.43,6.57,6.71,6.86,7.01,7.15,7.3,7.45,7.61,7.76,7.91,8.07,8.22,8.38,8.53,8.69,8.85,9.01,9.16,9.32,9.48,9.64,9.8,9.96,10.1,10.3,10.4,10.6,10.8,10.9,11.1,11.3,11.4,11.6,11.8,11.9,12.1,12.2,12.4,12.6,12.7
|
| 105 |
+
Latvia,6.7,6.85,6.99,7.14,7.29,7.44,7.59,7.73,7.88,8.03,8.17,8.32,8.46,8.61,8.75,8.89,9.02,9.16,9.29,9.42,9.54,9.67,9.79,9.91,10,10.1,10.2,10.3,10.4,10.6,10.7,10.8,10.9,11,11.2,11.3,11.4,11.5,11.7,11.8,11.9,12.1,12.2,12.4,12.5,12.7
|
| 106 |
+
Morocco,1.68,1.74,1.79,1.85,1.91,1.97,2.03,2.09,2.16,2.22,2.29,2.36,2.44,2.51,2.59,2.67,2.75,2.83,2.92,3.01,3.1,3.19,3.29,3.38,3.48,3.59,3.69,3.8,3.91,4.02,4.13,4.25,4.37,4.49,4.61,4.74,4.86,4.99,5.12,5.26,5.39,5.53,5.67,5.81,5.95,6.1
|
| 107 |
+
Moldova,7.08,7.23,7.38,7.53,7.68,7.84,7.99,8.14,8.29,8.44,8.59,8.74,8.88,9.03,9.17,9.31,9.45,9.58,9.72,9.85,9.97,10.1,10.2,10.3,10.5,10.6,10.7,10.8,10.9,11.1,11.2,11.3,11.4,11.6,11.7,11.9,12,12.1,12.3,12.4,12.6,12.7,12.9,13,13.2,13.3
|
| 108 |
+
Madagascar,1.9,1.96,2.02,2.08,2.14,2.2,2.27,2.33,2.4,2.47,2.54,2.62,2.69,2.77,2.85,2.93,3.01,3.09,3.18,3.27,3.36,3.45,3.54,3.63,3.73,3.83,3.93,4.03,4.13,4.24,4.35,4.46,4.57,4.69,4.81,4.93,5.06,5.18,5.31,5.45,5.58,5.72,5.86,6,6.14,6.29
|
| 109 |
+
Maldives,3.1,3.19,3.28,3.37,3.47,3.56,3.66,3.76,3.87,3.97,4.08,4.19,4.3,4.41,4.52,4.64,4.76,4.88,5.01,5.13,5.26,5.39,5.52,5.66,5.79,5.93,6.07,6.21,6.36,6.5,6.65,6.8,6.95,7.11,7.26,7.42,7.58,7.74,7.9,8.06,8.22,8.39,8.55,8.72,8.88,9.05
|
| 110 |
+
Mexico,4.5,4.62,4.74,4.86,4.99,5.12,5.25,5.38,5.52,5.66,5.8,5.94,6.08,6.22,6.37,6.51,6.66,6.81,6.96,7.11,7.27,7.42,7.57,7.73,7.88,8.04,8.19,8.35,8.5,8.66,8.82,8.98,9.14,9.3,9.46,9.63,9.79,9.95,10.1,10.3,10.4,10.6,10.8,10.9,11.1,11.3
|
| 111 |
+
Marshall Islands,3.91,4.02,4.13,4.24,4.35,4.46,4.58,4.69,4.81,4.94,5.06,5.18,5.31,5.44,5.57,5.7,5.84,5.97,6.11,6.25,6.39,6.53,6.67,6.82,6.96,7.11,7.26,7.41,7.57,7.72,7.88,8.04,8.2,8.36,8.52,8.69,8.85,9.02,9.19,9.35,9.52,9.69,9.86,10,10.2,10.4
|
| 112 |
+
North Macedonia,5.65,5.78,5.92,6.05,6.19,6.33,6.47,6.61,6.76,6.9,7.04,7.19,7.34,7.48,7.63,7.78,7.93,8.08,8.23,8.38,8.52,8.67,8.82,8.97,9.12,9.26,9.41,9.55,9.69,9.84,9.99,10.1,10.3,10.4,10.6,10.7,10.9,11.1,11.2,11.4,11.5,11.7,11.8,12,12.1,12.3
|
| 113 |
+
Mali,0.61,0.63,0.65,0.67,0.69,0.71,0.73,0.76,0.78,0.81,0.83,0.86,0.88,0.91,0.94,0.97,1,1.03,1.06,1.09,1.13,1.16,1.2,1.23,1.27,1.31,1.35,1.39,1.44,1.48,1.53,1.58,1.63,1.68,1.73,1.78,1.84,1.9,1.96,2.02,2.08,2.15,2.21,2.28,2.35,2.42
|
| 114 |
+
Malta,5.17,5.28,5.4,5.51,5.62,5.73,5.85,5.96,6.08,6.2,6.31,6.43,6.55,6.66,6.78,6.9,7.01,7.13,7.25,7.37,7.49,7.61,7.73,7.85,7.97,8.1,8.25,8.4,8.55,8.71,8.87,9.02,9.18,9.35,9.51,9.67,9.84,10,10.2,10.3,10.5,10.7,10.8,11,11.2,11.3
|
| 115 |
+
Myanmar,2.71,2.79,2.87,2.95,3.03,3.12,3.21,3.3,3.39,3.49,3.59,3.68,3.79,3.89,3.99,4.1,4.21,4.32,4.44,4.55,4.67,4.79,4.91,5.04,5.17,5.3,5.43,5.57,5.7,5.84,5.99,6.13,6.28,6.42,6.57,6.73,6.88,7.04,7.19,7.35,7.51,7.67,7.84,8,8.17,8.33
|
| 116 |
+
Montenegro,5.5,5.63,5.77,5.9,6.04,6.18,6.32,6.47,6.61,6.76,6.9,7.05,7.2,7.35,7.5,7.66,7.81,7.97,8.12,8.28,8.44,8.6,8.76,8.92,9.08,9.24,9.4,9.57,9.73,9.9,10.1,10.2,10.4,10.6,10.7,10.9,11.1,11.2,11.4,11.6,11.7,11.9,12,12.2,12.4,12.5
|
| 117 |
+
Mongolia,4.58,4.7,4.81,4.93,5.05,5.17,5.29,5.42,5.54,5.67,5.79,5.92,6.05,6.18,6.31,6.44,6.58,6.71,6.84,6.98,7.11,7.25,7.39,7.53,7.66,7.8,7.95,8.09,8.24,8.39,8.54,8.69,8.85,9.01,9.17,9.33,9.5,9.67,9.84,10,10.2,10.4,10.5,10.7,10.9,11.1
|
| 118 |
+
Mozambique,1.16,1.2,1.24,1.28,1.32,1.37,1.41,1.46,1.51,1.56,1.61,1.67,1.72,1.78,1.84,1.9,1.97,2.03,2.1,2.17,2.25,2.32,2.4,2.48,2.57,2.66,2.75,2.85,2.95,3.05,3.16,3.26,3.37,3.48,3.6,3.71,3.83,3.95,4.07,4.19,4.31,4.44,4.56,4.69,4.81,4.94
|
| 119 |
+
Mauritania,1.57,1.62,1.67,1.72,1.78,1.83,1.89,1.95,2.01,2.08,2.14,2.21,2.28,2.35,2.42,2.5,2.58,2.65,2.74,2.82,2.9,2.99,3.08,3.17,3.26,3.36,3.45,3.55,3.65,3.75,3.86,3.96,4.07,4.18,4.29,4.41,4.52,4.64,4.76,4.88,5,5.13,5.25,5.38,5.51,5.65
|
| 120 |
+
Mauritius,4.31,4.43,4.55,4.68,4.81,4.94,5.08,5.21,5.35,5.49,5.64,5.78,5.93,6.08,6.23,6.39,6.54,6.7,6.86,7.02,7.18,7.35,7.51,7.68,7.84,8.01,8.18,8.34,8.51,8.68,8.85,9.01,9.18,9.35,9.52,9.69,9.85,10,10.2,10.4,10.5,10.7,10.8,11,11.2,11.3
|
| 121 |
+
Malawi,1.79,1.84,1.9,1.97,2.03,2.09,2.16,2.23,2.3,2.37,2.45,2.53,2.61,2.69,2.77,2.86,2.94,3.04,3.13,3.22,3.32,3.42,3.52,3.63,3.73,3.84,3.94,4.05,4.16,4.27,4.38,4.5,4.61,4.73,4.85,4.97,5.09,5.21,5.34,5.46,5.59,5.72,5.85,5.98,6.11,6.24
|
| 122 |
+
Malaysia,5.16,5.31,5.46,5.62,5.78,5.94,6.1,6.26,6.43,6.6,6.78,6.95,7.13,7.31,7.49,7.67,7.85,8.04,8.22,8.41,8.6,8.78,8.97,9.15,9.33,9.51,9.67,9.83,9.99,10.2,10.3,10.5,10.6,10.8,11,11.1,11.3,11.4,11.6,11.8,11.9,12.1,12.2,12.4,12.6,12.7
|
| 123 |
+
Namibia,3.63,3.73,3.84,3.94,4.05,4.16,4.27,4.38,4.5,4.61,4.73,4.85,4.98,5.1,5.23,5.36,5.49,5.62,5.76,5.89,6.03,6.17,6.31,6.46,6.6,6.75,6.9,7.05,7.2,7.35,7.5,7.66,7.82,7.98,8.14,8.3,8.46,8.63,8.79,8.96,9.13,9.29,9.46,9.63,9.8,9.97
|
| 124 |
+
Niger,0.49,0.51,0.53,0.54,0.56,0.58,0.6,0.62,0.64,0.66,0.68,0.71,0.73,0.75,0.78,0.8,0.83,0.86,0.89,0.91,0.94,0.98,1.01,1.04,1.07,1.11,1.14,1.18,1.22,1.26,1.3,1.34,1.38,1.43,1.47,1.52,1.57,1.62,1.67,1.72,1.78,1.83,1.89,1.95,2.01,2.07
|
| 125 |
+
Nigeria,2.58,2.66,2.74,2.83,2.91,3,3.09,3.19,3.28,3.38,3.48,3.59,3.69,3.8,3.91,4.03,4.14,4.26,4.38,4.5,4.63,4.75,4.88,5.01,5.14,5.28,5.41,5.55,5.69,5.83,5.97,6.11,6.26,6.4,6.55,6.7,6.85,7,7.15,7.3,7.45,7.61,7.76,7.92,8.07,8.23
|
| 126 |
+
Nicaragua,3.42,3.51,3.61,3.71,3.81,3.91,4.01,4.12,4.23,4.34,4.45,4.56,4.68,4.79,4.91,5.03,5.16,5.28,5.4,5.53,5.66,5.79,5.92,6.05,6.19,6.32,6.46,6.6,6.74,6.88,7.02,7.17,7.32,7.47,7.62,7.78,7.93,8.09,8.25,8.41,8.58,8.74,8.9,9.07,9.24,9.4
|
| 127 |
+
Netherlands,7.77,7.92,8.07,8.22,8.37,8.52,8.67,8.82,8.97,9.12,9.27,9.42,9.56,9.71,9.86,10,10.1,10.3,10.4,10.6,10.7,10.8,10.9,11.1,11.2,11.3,11.4,11.6,11.7,11.8,12,12.1,12.3,12.4,12.5,12.7,12.8,13,13.1,13.2,13.4,13.5,13.7,13.8,13.9,14.1
|
| 128 |
+
Norway,7.56,7.72,7.87,8.03,8.18,8.34,8.5,8.66,8.81,8.97,9.13,9.29,9.45,9.62,9.78,9.94,10.1,10.3,10.4,10.6,10.7,10.9,11.1,11.2,11.4,11.5,11.7,11.8,12,12.2,12.3,12.5,12.6,12.8,12.9,13.1,13.2,13.4,13.5,13.7,13.8,14,14.1,14.2,14.4,14.5
|
| 129 |
+
Nepal,1.12,1.16,1.21,1.26,1.31,1.36,1.42,1.48,1.54,1.6,1.67,1.74,1.81,1.89,1.97,2.06,2.14,2.24,2.34,2.44,2.55,2.66,2.78,2.91,3.04,3.17,3.3,3.43,3.57,3.7,3.83,3.97,4.1,4.24,4.38,4.52,4.66,4.8,4.94,5.08,5.23,5.37,5.51,5.66,5.8,5.95
|
| 130 |
+
New Zealand,9.07,9.23,9.38,9.52,9.67,9.81,9.96,10.1,10.2,10.4,10.5,10.7,10.8,10.9,11.1,11.2,11.3,11.4,11.6,11.7,11.8,11.9,12.1,12.2,12.3,12.4,12.5,12.6,12.8,12.9,13,13.1,13.3,13.4,13.5,13.7,13.8,13.9,14.1,14.2,14.3,14.5,14.6,14.7,14.9,15
|
| 131 |
+
Oman,3.46,3.56,3.66,3.77,3.87,3.98,4.09,4.2,4.32,4.43,4.55,4.67,4.8,4.92,5.05,5.18,5.32,5.45,5.59,5.73,5.87,6.01,6.16,6.3,6.45,6.6,6.76,6.91,7.06,7.22,7.38,7.53,7.69,7.86,8.02,8.18,8.35,8.51,8.68,8.84,9.01,9.18,9.35,9.51,9.68,9.85
|
| 132 |
+
Pakistan,1.17,1.21,1.26,1.31,1.36,1.41,1.46,1.52,1.58,1.64,1.7,1.77,1.84,1.91,1.99,2.07,2.15,2.24,2.33,2.43,2.53,2.64,2.75,2.87,2.99,3.12,3.24,3.35,3.47,3.59,3.71,3.83,3.95,4.07,4.19,4.32,4.45,4.58,4.71,4.84,4.97,5.1,5.24,5.37,5.51,5.65
|
| 133 |
+
Panama,6.24,6.38,6.52,6.65,6.79,6.93,7.07,7.21,7.35,7.49,7.62,7.76,7.9,8.03,8.17,8.3,8.43,8.56,8.69,8.81,8.93,9.05,9.17,9.28,9.39,9.5,9.62,9.74,9.87,10,10.1,10.3,10.4,10.6,10.7,10.8,11,11.1,11.3,11.4,11.6,11.7,11.9,12,12.2,12.3
|
| 134 |
+
Peru,5.2,5.33,5.46,5.59,5.73,5.86,5.99,6.12,6.26,6.39,6.53,6.66,6.8,6.94,7.08,7.21,7.35,7.49,7.63,7.77,7.91,8.05,8.19,8.32,8.46,8.6,8.73,8.88,9.02,9.16,9.31,9.45,9.6,9.75,9.9,10.1,10.2,10.4,10.5,10.7,10.8,11,11.2,11.3,11.5,11.7
|
| 135 |
+
Philippines,5.95,6.08,6.21,6.34,6.47,6.6,6.73,6.86,6.99,7.11,7.24,7.36,7.48,7.6,7.72,7.84,7.96,8.07,8.18,8.29,8.4,8.51,8.61,8.71,8.81,8.91,9.02,9.12,9.23,9.35,9.46,9.58,9.7,9.82,9.95,10.1,10.2,10.3,10.5,10.6,10.8,10.9,11.1,11.2,11.3,11.5
|
| 136 |
+
Papua New Guinea,2.38,2.45,2.52,2.6,2.67,2.75,2.83,2.91,3,3.08,3.17,3.26,3.35,3.44,3.54,3.63,3.73,3.83,3.94,4.04,4.15,4.26,4.37,4.48,4.59,4.71,4.83,4.95,5.08,5.2,5.33,5.47,5.6,5.74,5.87,6.02,6.16,6.3,6.45,6.6,6.75,6.9,7.05,7.21,7.36,7.52
|
| 137 |
+
Poland,7.8,7.95,8.1,8.24,8.39,8.53,8.68,8.82,8.96,9.09,9.23,9.36,9.49,9.62,9.75,9.87,9.99,10.1,10.2,10.3,10.5,10.6,10.7,10.8,10.9,11,11.1,11.2,11.3,11.5,11.6,11.7,11.9,12,12.1,12.3,12.4,12.5,12.7,12.8,13,13.1,13.3,13.4,13.6,13.7
|
| 138 |
+
North Korea,5.79,5.93,6.07,6.21,6.36,6.51,6.66,6.81,6.96,7.12,7.27,7.43,7.59,7.75,7.91,8.07,8.24,8.4,8.56,8.73,8.9,9.06,9.23,9.4,9.57,9.74,9.9,10.1,10.2,10.4,10.6,10.8,10.9,11.1,11.3,11.4,11.6,11.7,11.9,12.1,12.2,12.4,12.5,12.7,12.9,13
|
| 139 |
+
Portugal,4.38,4.49,4.6,4.71,4.83,4.94,5.06,5.18,5.31,5.43,5.56,5.69,5.83,5.96,6.1,6.24,6.38,6.53,6.68,6.83,6.98,7.14,7.3,7.47,7.64,7.81,7.99,8.17,8.35,8.53,8.71,8.88,9.06,9.24,9.42,9.6,9.77,9.95,10.1,10.3,10.5,10.7,10.8,11,11.2,11.3
|
| 140 |
+
Paraguay,4.21,4.32,4.43,4.54,4.66,4.78,4.89,5.01,5.14,5.26,5.38,5.51,5.63,5.76,5.89,6.02,6.15,6.28,6.41,6.55,6.68,6.81,6.95,7.08,7.22,7.35,7.5,7.64,7.78,7.93,8.08,8.23,8.38,8.54,8.7,8.85,9.01,9.18,9.34,9.5,9.66,9.83,10,10.2,10.3,10.5
|
| 141 |
+
Palestine,4.77,4.89,5.02,5.15,5.28,5.41,5.55,5.68,5.82,5.96,6.1,6.25,6.39,6.54,6.69,6.84,6.99,7.14,7.3,7.45,7.61,7.76,7.92,8.08,8.23,8.39,8.54,8.7,8.85,9,9.16,9.32,9.47,9.63,9.79,9.95,10.1,10.3,10.4,10.6,10.8,10.9,11.1,11.2,11.4,11.6
|
| 142 |
+
Qatar,4.59,4.71,4.84,4.96,5.09,5.22,5.35,5.49,5.63,5.76,5.9,6.05,6.19,6.34,6.48,6.63,6.79,6.94,7.09,7.25,7.4,7.56,7.72,7.88,8.04,8.2,8.35,8.51,8.67,8.82,8.98,9.14,9.3,9.46,9.62,9.78,9.94,10.1,10.3,10.4,10.6,10.8,10.9,11.1,11.2,11.4
|
| 143 |
+
Romania,7.85,7.99,8.13,8.27,8.4,8.53,8.66,8.78,8.9,9.02,9.13,9.24,9.35,9.45,9.54,9.63,9.72,9.81,9.88,9.96,10,10.1,10.1,10.2,10.2,10.3,10.4,10.5,10.6,10.7,10.8,10.9,11,11.1,11.3,11.4,11.5,11.7,11.8,12,12.1,12.3,12.4,12.6,12.7,12.9
|
| 144 |
+
Russia,7.16,7.31,7.46,7.62,7.77,7.93,8.08,8.24,8.39,8.55,8.7,8.85,9.01,9.16,9.31,9.45,9.6,9.75,9.89,10,10.2,10.3,10.4,10.6,10.7,10.8,11,11.1,11.2,11.3,11.5,11.6,11.7,11.9,12,12.1,12.3,12.4,12.6,12.7,12.8,13,13.1,13.3,13.4,13.6
|
| 145 |
+
Rwanda,1.77,1.83,1.89,1.95,2.01,2.07,2.14,2.2,2.27,2.34,2.41,2.49,2.56,2.64,2.72,2.8,2.88,2.96,3.04,3.13,3.22,3.3,3.39,3.48,3.57,3.67,3.76,3.85,3.94,4.03,4.13,4.23,4.33,4.43,4.53,4.64,4.75,4.86,4.98,5.1,5.22,5.34,5.47,5.6,5.73,5.86
|
| 146 |
+
Saudi Arabia,3.85,3.96,4.07,4.18,4.3,4.42,4.55,4.67,4.8,4.93,5.07,5.21,5.35,5.49,5.64,5.79,5.94,6.1,6.26,6.42,6.58,6.75,6.92,7.1,7.28,7.46,7.64,7.83,8.01,8.19,8.38,8.56,8.74,8.93,9.11,9.29,9.47,9.65,9.83,10,10.2,10.3,10.5,10.7,10.9,11
|
| 147 |
+
Sudan,2.06,2.13,2.2,2.27,2.35,2.43,2.51,2.6,2.69,2.78,2.87,2.96,3.06,3.16,3.27,3.37,3.48,3.59,3.7,3.82,3.94,4.06,4.18,4.3,4.43,4.56,4.66,4.77,4.88,4.98,5.1,5.21,5.32,5.43,5.55,5.67,5.79,5.91,6.04,6.16,6.29,6.42,6.56,6.69,6.83,6.97
|
| 148 |
+
Senegal,1.12,1.15,1.19,1.23,1.27,1.31,1.35,1.39,1.44,1.48,1.53,1.57,1.62,1.67,1.73,1.78,1.83,1.89,1.95,2,2.06,2.13,2.19,2.25,2.32,2.39,2.46,2.53,2.61,2.68,2.76,2.84,2.92,3.01,3.1,3.19,3.28,3.37,3.47,3.56,3.66,3.77,3.87,3.98,4.09,4.2
|
| 149 |
+
Singapore,6.18,6.33,6.48,6.64,6.79,6.95,7.11,7.28,7.44,7.61,7.78,7.95,8.13,8.31,8.49,8.67,8.85,9.04,9.23,9.42,9.61,9.81,10,10.2,10.4,10.6,10.8,11,11.2,11.4,11.6,11.8,12,12.2,12.4,12.5,12.7,12.9,13.1,13.2,13.4,13.5,13.7,13.8,14,14.1
|
| 150 |
+
Solomon Islands,2.58,2.66,2.74,2.83,2.92,3.01,3.1,3.2,3.3,3.41,3.52,3.63,3.74,3.86,3.98,4.11,4.24,4.38,4.52,4.67,4.82,4.98,5.14,5.31,5.49,5.68,5.85,6.03,6.2,6.38,6.55,6.73,6.9,7.08,7.26,7.43,7.61,7.78,7.96,8.14,8.31,8.49,8.67,8.84,9.02,9.2
|
| 151 |
+
Sierra Leone,0.82,0.85,0.88,0.92,0.96,1,1.04,1.09,1.13,1.18,1.23,1.29,1.34,1.4,1.47,1.53,1.6,1.67,1.75,1.83,1.91,2,2.09,2.18,2.27,2.37,2.46,2.56,2.65,2.75,2.85,2.95,3.06,3.16,3.27,3.38,3.49,3.61,3.72,3.84,3.96,4.08,4.2,4.32,4.45,4.57
|
| 152 |
+
El Salvador,3.37,3.47,3.57,3.67,3.78,3.89,4,4.12,4.23,4.35,4.48,4.6,4.73,4.86,4.99,5.12,5.26,5.4,5.54,5.69,5.83,5.98,6.13,6.28,6.43,6.58,6.73,6.88,7.03,7.19,7.34,7.5,7.66,7.81,7.97,8.14,8.3,8.46,8.63,8.8,8.96,9.13,9.3,9.47,9.64,9.81
|
| 153 |
+
Somalia,0.61,0.63,0.65,0.68,0.7,0.72,0.74,0.77,0.79,0.82,0.85,0.87,0.9,0.93,0.96,0.99,1.03,1.06,1.09,1.13,1.16,1.2,1.24,1.28,1.32,1.36,1.4,1.45,1.49,1.54,1.59,1.64,1.69,1.74,1.8,1.85,1.91,1.97,2.03,2.09,2.16,2.22,2.29,2.36,2.43,2.5
|
| 154 |
+
Serbia,4.72,4.84,4.95,5.07,5.2,5.32,5.45,5.57,5.7,5.83,5.97,6.1,6.24,6.38,6.52,6.66,6.8,6.94,7.09,7.24,7.39,7.54,7.7,7.85,8.01,8.17,8.34,8.51,8.68,8.86,9.03,9.21,9.39,9.57,9.75,9.93,10.1,10.3,10.5,10.7,10.8,11,11.2,11.4,11.6,11.7
|
| 155 |
+
South Sudan,0.42,0.44,0.45,0.47,0.48,0.5,0.52,0.53,0.55,0.57,0.59,0.61,0.63,0.65,0.67,0.69,0.72,0.74,0.76,0.79,0.81,0.84,0.87,0.9,0.93,0.96,0.99,1.02,1.05,1.08,1.12,1.16,1.19,1.23,1.27,1.31,1.35,1.39,1.44,1.48,1.53,1.58,1.63,1.68,1.73,1.79
|
| 156 |
+
Sao Tome and Principe,2.08,2.15,2.22,2.29,2.36,2.43,2.51,2.59,2.67,2.75,2.83,2.92,3.01,3.1,3.2,3.29,3.39,3.49,3.6,3.7,3.81,3.93,4.04,4.16,4.28,4.4,4.53,4.66,4.79,4.92,5.05,5.19,5.32,5.46,5.6,5.74,5.88,6.02,6.17,6.32,6.46,6.61,6.76,6.92,7.07,7.22
|
| 157 |
+
Suriname,3.67,3.77,3.87,3.98,4.09,4.2,4.31,4.42,4.54,4.66,4.78,4.9,5.02,5.15,5.28,5.41,5.54,5.68,5.81,5.95,6.09,6.23,6.38,6.52,6.67,6.82,6.97,7.13,7.29,7.44,7.6,7.76,7.92,8.09,8.25,8.42,8.58,8.75,8.92,9.09,9.26,9.43,9.6,9.77,9.94,10.1
|
| 158 |
+
Slovak Republic,5.53,5.65,5.78,5.92,6.05,6.18,6.32,6.45,6.59,6.72,6.86,7,7.14,7.28,7.42,7.56,7.7,7.84,7.98,8.12,8.26,8.4,8.53,8.67,8.81,8.95,9.08,9.21,9.34,9.48,9.61,9.75,9.89,10,10.2,10.3,10.5,10.6,10.8,10.9,11.1,11.2,11.4,11.5,11.7,11.9
|
| 159 |
+
Slovenia,5.86,5.99,6.13,6.27,6.41,6.55,6.7,6.84,6.99,7.13,7.28,7.43,7.58,7.74,7.89,8.04,8.2,8.36,8.51,8.67,8.83,8.99,9.14,9.3,9.46,9.62,9.78,9.94,10.1,10.3,10.4,10.6,10.7,10.9,11,11.2,11.4,11.5,11.7,11.8,12,12.2,12.3,12.5,12.7,12.8
|
| 160 |
+
Sweden,8.52,8.67,8.82,8.97,9.12,9.27,9.42,9.58,9.73,9.88,10,10.2,10.3,10.5,10.6,10.8,10.9,11.1,11.2,11.3,11.5,11.6,11.8,11.9,12.1,12.2,12.3,12.5,12.6,12.8,12.9,13.1,13.2,13.3,13.5,13.6,13.8,13.9,14.1,14.2,14.4,14.5,14.6,14.8,14.9,15
|
| 161 |
+
Eswatini,3.54,3.64,3.75,3.86,3.98,4.09,4.21,4.33,4.46,4.58,4.71,4.84,4.98,5.11,5.25,5.39,5.53,5.68,5.82,5.97,6.12,6.27,6.43,6.58,6.73,6.89,7.02,7.16,7.31,7.45,7.59,7.74,7.89,8.04,8.19,8.35,8.5,8.66,8.82,8.98,9.14,9.3,9.47,9.63,9.8,9.97
|
| 162 |
+
Seychelles,4.53,4.66,4.78,4.91,5.04,5.17,5.31,5.44,5.58,5.72,5.87,6.01,6.16,6.31,6.46,6.61,6.77,6.92,7.08,7.24,7.39,7.55,7.71,7.87,8.03,8.19,8.33,8.48,8.62,8.77,8.92,9.07,9.23,9.38,9.53,9.69,9.84,10,10.2,10.3,10.5,10.6,10.8,10.9,11.1,11.3
|
| 163 |
+
Syria,2.54,2.63,2.71,2.8,2.9,2.99,3.1,3.2,3.31,3.42,3.53,3.65,3.77,3.9,4.03,4.17,4.31,4.45,4.6,4.76,4.92,5.09,5.26,5.44,5.62,5.81,5.97,6.13,6.3,6.46,6.62,6.79,6.95,7.12,7.29,7.45,7.62,7.79,7.96,8.12,8.29,8.46,8.63,8.8,8.97,9.14
|
| 164 |
+
Chad,0.62,0.64,0.66,0.69,0.71,0.73,0.76,0.78,0.81,0.84,0.87,0.89,0.92,0.95,0.99,1.02,1.05,1.09,1.13,1.16,1.2,1.24,1.28,1.33,1.37,1.41,1.46,1.51,1.56,1.62,1.67,1.72,1.78,1.84,1.9,1.96,2.02,2.09,2.15,2.22,2.29,2.36,2.43,2.51,2.58,2.66
|
| 165 |
+
Togo,1.58,1.63,1.69,1.74,1.8,1.86,1.92,1.98,2.04,2.11,2.18,2.25,2.32,2.39,2.47,2.55,2.63,2.71,2.8,2.89,2.98,3.07,3.17,3.27,3.37,3.47,3.59,3.7,3.82,3.93,4.05,4.18,4.3,4.43,4.56,4.69,4.82,4.95,5.09,5.22,5.36,5.5,5.64,5.78,5.92,6.06
|
| 166 |
+
Thailand,4.44,4.56,4.69,4.81,4.94,5.07,5.2,5.34,5.48,5.62,5.76,5.91,6.06,6.21,6.37,6.52,6.68,6.84,7.01,7.17,7.34,7.5,7.67,7.84,8.02,8.19,8.36,8.52,8.69,8.86,9.03,9.19,9.36,9.53,9.69,9.86,10,10.2,10.3,10.5,10.7,10.8,11,11.2,11.3,11.5
|
| 167 |
+
Tajikistan,5.38,5.51,5.64,5.77,5.9,6.04,6.17,6.3,6.44,6.57,6.71,6.84,6.98,7.11,7.25,7.38,7.51,7.64,7.77,7.9,8.02,8.15,8.27,8.39,8.51,8.62,8.72,8.83,8.94,9.05,9.16,9.28,9.4,9.52,9.64,9.77,9.9,10,10.2,10.3,10.4,10.6,10.7,10.9,11,11.2
|
| 168 |
+
Turkmenistan,6.4,6.55,6.7,6.85,7,7.15,7.3,7.46,7.61,7.77,7.93,8.09,8.25,8.42,8.58,8.74,8.91,9.07,9.24,9.41,9.58,9.74,9.91,10.1,10.3,10.4,10.6,10.8,10.9,11.1,11.3,11.4,11.6,11.8,11.9,12.1,12.2,12.4,12.6,12.7,12.9,13,13.2,13.3,13.5,13.6
|
| 169 |
+
Timor-Leste,2.8,2.88,2.97,3.05,3.14,3.23,3.32,3.42,3.52,3.61,3.72,3.82,3.92,4.03,4.14,4.26,4.37,4.49,4.61,4.73,4.85,4.98,5.11,5.24,5.37,5.51,5.66,5.8,5.95,6.1,6.25,6.4,6.56,6.72,6.87,7.03,7.19,7.36,7.52,7.68,7.85,8.02,8.18,8.35,8.52,8.69
|
| 170 |
+
Tonga,6.25,6.38,6.52,6.65,6.79,6.92,7.06,7.2,7.33,7.47,7.6,7.73,7.86,7.99,8.12,8.24,8.36,8.48,8.6,8.71,8.82,8.92,9.02,9.12,9.21,9.3,9.39,9.47,9.57,9.67,9.77,9.88,9.99,10.1,10.2,10.3,10.5,10.6,10.7,10.9,11,11.2,11.3,11.4,11.6,11.7
|
| 171 |
+
Trinidad and Tobago,6.89,7.05,7.21,7.38,7.54,7.71,7.88,8.05,8.22,8.39,8.56,8.73,8.9,9.07,9.25,9.42,9.59,9.76,9.93,10.1,10.3,10.4,10.6,10.8,10.9,11.1,11.2,11.4,11.5,11.7,11.8,12,12.1,12.3,12.4,12.6,12.7,12.9,13,13.2,13.3,13.4,13.6,13.7,13.9,14
|
| 172 |
+
Tunisia,2.75,2.85,2.95,3.06,3.17,3.29,3.4,3.53,3.66,3.79,3.93,4.07,4.22,4.37,4.53,4.69,4.86,5.04,5.22,5.41,5.6,5.8,6.01,6.22,6.43,6.66,6.85,7.05,7.25,7.44,7.63,7.82,8.01,8.2,8.38,8.57,8.75,8.93,9.12,9.3,9.47,9.65,9.83,10,10.2,10.3
|
| 173 |
+
Turkey,3.7,3.79,3.89,3.99,4.08,4.19,4.29,4.39,4.5,4.6,4.71,4.82,4.93,5.04,5.16,5.27,5.39,5.51,5.63,5.75,5.87,6,6.13,6.25,6.38,6.52,6.66,6.81,6.96,7.11,7.26,7.41,7.57,7.73,7.89,8.05,8.21,8.38,8.54,8.71,8.88,9.05,9.22,9.39,9.56,9.73
|
| 174 |
+
Taiwan,6.67,6.83,7,7.16,7.33,7.5,7.67,7.84,8.01,8.19,8.36,8.53,8.7,8.87,9.04,9.21,9.38,9.54,9.7,9.87,10,10.2,10.3,10.5,10.6,10.8,10.9,11.1,11.2,11.4,11.5,11.7,11.8,12,12.1,12.3,12.4,12.6,12.7,12.9,13,13.2,13.3,13.5,13.6,13.8
|
| 175 |
+
Tanzania,2.67,2.75,2.83,2.92,3,3.09,3.18,3.27,3.37,3.46,3.56,3.65,3.75,3.85,3.95,4.06,4.16,4.26,4.37,4.47,4.58,4.68,4.79,4.89,5,5.1,5.21,5.31,5.41,5.52,5.63,5.74,5.85,5.96,6.08,6.2,6.32,6.45,6.57,6.7,6.84,6.98,7.12,7.26,7.4,7.55
|
| 176 |
+
Uganda,2.26,2.32,2.39,2.47,2.54,2.62,2.7,2.78,2.86,2.94,3.03,3.11,3.2,3.3,3.39,3.49,3.58,3.68,3.79,3.89,4,4.1,4.21,4.33,4.44,4.56,4.67,4.79,4.91,5.04,5.16,5.29,5.42,5.56,5.69,5.83,5.96,6.1,6.25,6.39,6.54,6.68,6.83,6.98,7.14,7.29
|
| 177 |
+
Ukraine,6.44,6.58,6.71,6.85,6.99,7.13,7.27,7.41,7.56,7.7,7.84,7.99,8.13,8.28,8.42,8.57,8.72,8.87,9.02,9.17,9.32,9.47,9.63,9.78,9.94,10.1,10.3,10.4,10.6,10.8,11,11.2,11.3,11.5,11.7,11.9,12.1,12.3,12.5,12.7,12.8,13,13.2,13.4,13.5,13.7
|
| 178 |
+
Uruguay,6.32,6.45,6.58,6.72,6.84,6.97,7.1,7.23,7.36,7.48,7.6,7.73,7.84,7.96,8.08,8.19,8.3,8.4,8.51,8.6,8.7,8.79,8.88,8.96,9.04,9.11,9.2,9.29,9.39,9.5,9.6,9.72,9.83,9.95,10.1,10.2,10.3,10.5,10.6,10.7,10.9,11,11.2,11.3,11.5,11.6
|
| 179 |
+
USA,11.5,11.6,11.7,11.7,11.8,11.8,11.9,11.9,12,12,12,12.1,12.1,12.1,12.1,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.3,12.3,12.3,12.3,12.4,12.4,12.5,12.5,12.6,12.7,12.8,12.9,13,13.1,13.2,13.4,13.5,13.7,13.8
|
| 180 |
+
Uzbekistan,5.92,6.06,6.2,6.34,6.48,6.63,6.77,6.91,7.06,7.21,7.35,7.5,7.65,7.79,7.94,8.09,8.24,8.38,8.53,8.67,8.82,8.96,9.1,9.24,9.38,9.52,9.65,9.79,9.92,10.1,10.2,10.3,10.5,10.6,10.8,10.9,11.1,11.2,11.4,11.5,11.7,11.8,12,12.1,12.3,12.4
|
| 181 |
+
St. Vincent and the Grenadines,5.47,5.6,5.74,5.88,6.02,6.16,6.31,6.45,6.6,6.75,6.9,7.05,7.21,7.36,7.52,7.68,7.84,8,8.16,8.32,8.48,8.65,8.81,8.98,9.14,9.31,9.48,9.64,9.81,9.98,10.1,10.3,10.5,10.7,10.8,11,11.2,11.3,11.5,11.6,11.8,12,12.1,12.3,12.4,12.6
|
| 182 |
+
Venezuela,5.15,5.28,5.41,5.54,5.67,5.8,5.94,6.08,6.22,6.35,6.5,6.64,6.78,6.92,7.07,7.21,7.36,7.5,7.65,7.8,7.94,8.09,8.24,8.38,8.53,8.67,8.82,8.98,9.13,9.29,9.45,9.6,9.76,9.92,10.1,10.3,10.4,10.6,10.7,10.9,11.1,11.2,11.4,11.6,11.7,11.9
|
| 183 |
+
Vietnam,3.9,4,4.11,4.22,4.33,4.44,4.56,4.67,4.79,4.91,5.03,5.15,5.28,5.4,5.53,5.66,5.79,5.92,6.05,6.19,6.32,6.46,6.6,6.74,6.88,7.02,7.17,7.31,7.46,7.61,7.77,7.92,8.08,8.24,8.4,8.56,8.72,8.89,9.05,9.22,9.39,9.56,9.73,9.9,10.1,10.2
|
| 184 |
+
Vanuatu,3.48,3.57,3.67,3.77,3.87,3.98,4.08,4.19,4.3,4.41,4.52,4.64,4.76,4.88,5,5.12,5.24,5.37,5.5,5.63,5.76,5.89,6.02,6.16,6.29,6.43,6.57,6.71,6.86,7.01,7.15,7.3,7.46,7.61,7.77,7.92,8.08,8.24,8.4,8.57,8.73,8.9,9.06,9.23,9.4,9.57
|
| 185 |
+
Samoa,7.39,7.55,7.7,7.86,8.02,8.18,8.34,8.5,8.67,8.83,8.99,9.15,9.32,9.48,9.64,9.81,9.97,10.1,10.3,10.5,10.6,10.8,10.9,11.1,11.3,11.4,11.6,11.8,11.9,12.1,12.2,12.4,12.5,12.7,12.8,13,13.1,13.3,13.4,13.6,13.7,13.9,14,14.2,14.3,14.4
|
| 186 |
+
Yemen,0.51,0.53,0.55,0.57,0.6,0.62,0.65,0.68,0.71,0.74,0.78,0.82,0.85,0.9,0.94,0.99,1.04,1.09,1.15,1.21,1.27,1.34,1.42,1.5,1.59,1.69,1.78,1.87,1.97,2.06,2.16,2.26,2.36,2.46,2.56,2.66,2.76,2.87,2.97,3.08,3.19,3.3,3.41,3.52,3.63,3.74
|
| 187 |
+
South Africa,4.71,4.83,4.95,5.08,5.2,5.33,5.46,5.6,5.73,5.87,6.01,6.15,6.29,6.43,6.58,6.73,6.88,7.03,7.18,7.34,7.49,7.65,7.81,7.97,8.13,8.3,8.46,8.63,8.8,8.97,9.14,9.31,9.48,9.65,9.82,9.99,10.2,10.3,10.5,10.7,10.8,11,11.2,11.3,11.5,11.7
|
| 188 |
+
Zambia,2.74,2.82,2.91,2.99,3.08,3.17,3.26,3.36,3.45,3.55,3.65,3.75,3.85,3.95,4.06,4.16,4.27,4.38,4.49,4.6,4.71,4.82,4.94,5.05,5.17,5.28,5.4,5.51,5.63,5.75,5.87,5.99,6.12,6.24,6.37,6.51,6.64,6.78,6.92,7.06,7.21,7.35,7.5,7.65,7.81,7.96
|
| 189 |
+
Zimbabwe,4.28,4.39,4.51,4.62,4.74,4.87,4.99,5.12,5.24,5.37,5.5,5.64,5.77,5.91,6.04,6.18,6.32,6.47,6.61,6.75,6.9,7.04,7.19,7.33,7.48,7.63,7.77,7.91,8.06,8.21,8.36,8.51,8.66,8.82,8.97,9.13,9.29,9.45,9.61,9.77,9.93,10.1,10.3,10.4,10.6,10.8
|
mincpcap_cppp.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
pop.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|